-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
43 lines (29 loc) · 1.21 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
<?php get_header(); ?>
<body>
<?php
global $lang;
include("main_menu.php");
?>
<div class="container heighten-row">
<div class="col-md-8">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<div class="post">
<?php the_post_thumbnail(); ?>
<?php the_content(); ?>
<p class="postmetadata">
<?php /*the_author();*/ ?> <?php edit_post_link('Edit', '', ''); $numPosts++; ?>
</p>
</div>
<?php endwhile; ?>
<?php endif; //end have_posts <div class="up_arrow"></div> ?>
</div>
<div class="col-md-4">
<?php get_sidebar("single_right"); ?>
<?php get_sidebar("titlepage_right"); ?>
</div> <!-- col-md-9 -->
</div>
<?php get_footer(); ?>
</body>
</html>