-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-default.php
More file actions
34 lines (28 loc) · 1.03 KB
/
single-default.php
File metadata and controls
34 lines (28 loc) · 1.03 KB
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
<div id="photo_wrapper" class="<?php echo $post->class; ?>">
<figure id="photo_container" class="">
<img src="" alt="" />
<figcaption id="photo_infos">
<h2></h2>
</figcaption>
</figure>
</div>
<div id="wrapper" class="<?php echo $post->class; ?>">
<h2 id="content_title"><?php echo $post->title; ?></h2>
<section id="content" class="<?php echo $post->class; ?>">
<article class="post_content"><?php echo $post->content; ?></article>
<article class="post_categories">
<ul>
<?php
foreach ($post->categories as $cat_name => $cat_url) {
echo '<li><a href="' . $cat_url . '">[' . $cat_name . ']</a></li>';
}
?>
</ul>
</article>
<?php if (isset($post->ratings)) { ?>
<article class="post_rating"> <?php echo $post->ratings; ?> </article>
<?php } ?>
<div class="clr"></div>
</section>
<?php comments_template(); ?>
</div>