forked from inclusive-design/idi-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
31 lines (24 loc) · 807 Bytes
/
single.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 get_header(); ?>
<div class="fl-centered fl-col-mixed fl-site-wrapper">
<div class="fl-col-fixed fl-force-left">
<?php get_sidebar('news'); ?>
</div>
<div class="fl-col-flex idi-one-column">
<div class="idi-news-article idi-breadcrumbs">
<a href="<?php echo get_home_url(); ?>/news">Back to News</a>
</div>
<div id="content" class="idi-news-article">
<h1><?php the_title(); ?></h1>
<div class="idi-date">Posted <?php the_time('F jS, Y'); ?> by <?php the_author(); ?></div>
<div class="entry">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
<?php
// Remove the id="content" attribute that is inherited from the parent theme "wordpress-fss-theme".
// This attribute/value pair is re-defined in this page.
remove_parent_contentID();
get_footer();
?>