-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-project.php
executable file
·86 lines (55 loc) · 2.66 KB
/
archive-project.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* Projects Archive Template
*
* The archive template is used for displaying projects. It works with the DevPress Portfolio plugin.
*
* @package Murmur
* @subpackage Functions
* @version 0.1.0
* @author Tung Do <[email protected]>
* @copyright Copyright (c) 2012, Tung Do
* @link http://devpress.com/themes/murmur
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
get_header(); // Loads the header.php template. ?>
<?php do_atomic( 'before_content' ); // murmur_before_content ?>
<?php if( hybrid_get_setting( 'murmur_site_description_extended' ) ) { ?>
<div id="site-description-extended">
<?php echo hybrid_get_setting( 'murmur_site_description_extended' ); ?>
</div><!-- #site-description-extended -->
<?php } ?>
<?php get_template_part( 'menu', 'portfolio-filter' ); // Loads the menu-portfolio-filter.php template ?>
<div id="content">
<?php do_atomic( 'open_content' ); // murmur_open_content ?>
<div class="hfeed">
<ul class="loop-projects">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_atomic( 'before_entry' ); // murmur_before_entry ?>
<li id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
<?php do_atomic( 'open_entry' ); // murmur_open_entry ?>
<?php if ( current_theme_supports( 'get-the-image' ) ) : ?>
<?php $image = get_the_image( array( 'echo' => false ) );
if ( $image ) : ?>
<a href="<?php echo get_permalink(); ?>" title="<?php the_title_attribute( 'echo=1' ); ?>" rel="bookmark" class="thumbnail-link"><?php get_the_image( array( 'size' => 'dp-portfolio-small', 'link_to_post' => false, 'width' => '215', 'height' => '160' ) ); ?></a>
<?php endif; ?>
<?php endif; ?>
<?php do_atomic( 'close_entry' ); // murmur_close_entry ?>
</li><!-- .hentry -->
<?php do_atomic( 'after_entry' ); // murmur_after_entry ?>
<?php endwhile; ?>
<?php else : ?>
<li class="<?php hybrid_entry_class(); ?>">
<div class="entry-summary">
<p><?php _e( 'Apologies, but no projects were found.', 'murmur' ); ?></p>
</div><!-- .entry-summary -->
</li><!-- .hentry .error -->
<?php endif; ?>
</ul><!-- .loop-entries -->
</div><!-- .hfeed -->
<?php do_atomic( 'close_content' ); // murmur_close_content ?>
<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
</div><!-- #content -->
<?php do_atomic( 'after_content' ); // murmur_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>