forked from CRIK0VA/alethemes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-award.php
executable file
·31 lines (29 loc) · 1009 Bytes
/
template-award.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
<?php
/**
* Template Name: Template About (awards)
*/
get_header(); ?>
<!-- Content -->
<div class="about-center-align">
<div class="content-left">
<?php if ( has_nav_menu( 'aboutpage_menu' ) ) {
wp_nav_menu(array(
'theme_location'=> 'aboutpage_menu',
'menu' => 'About Page Menu',
'menu_class' => 'nav cf',
'walker' => new Aletheme_Nav_Walker(),
'container' => '',
));
} ?>
</div>
<div class="content-right">
<div class="text">
<?php echo get_the_post_thumbnail($post->ID,'full'); ?>
<div class="h2 about-3"><?php the_title(); ?></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>