-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-announcement.php
27 lines (23 loc) · 1.03 KB
/
single-announcement.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
<?php get_header(); ?>
<!-- Row for main content area -->
<div class="small-12 large-8 columns" id="content" role="main">
<?php /* Start loop */ ?>
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php reverie_entry_meta(); ?>
</header>
<div class="entry-content">
<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'reverie'), 'after' => '</p></nav>' )); ?>
<p class="entry-tags"><?php the_tags(); ?></p>
<?php edit_post_link('Edit this Post'); ?>
</footer>
</article>
<?php endwhile; // End the loop ?>
</div>
<?php get_template_part( 'sidebar', 'announcement' ); ?>
<?php get_footer(); ?>