-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
executable file
·58 lines (47 loc) · 2.18 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
<?php get_header(); ?>
</head>
<body class="blog">
<div id="container">
<div id="container_wrapper">
<div id="header" class="clearfix">
<h1 id="logo"><a href="<?php echo get_option('home'); ?>/"><img src="http://www.linkingpaths.com/images/template/logo.gif" alt="" /></a></h1>
<div id="header_langs">
<div class="content">
<a href="#" class="on">español</a<!--| <a href="#">english</a> -->
</div>
</div>
<?php include (TEMPLATEPATH . '/header_menu.php'); ?>
</div> <!-- /#header -->
<div id="pagebody">
<div class="main2cols_sideright clearfix">
<div class="main2cols_sideright_left">
<?php include (TEMPLATEPATH . '/the_section_title.php'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php include (TEMPLATEPATH . '/the_next_pre_posts.php'); ?>
<div class="postList">
<ul class="posts">
<?php include (TEMPLATEPATH . '/the_post.php'); ?>
<?php comments_template(); ?>
</ul>
</div> <!-- /.postList -->
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.', 'kubrick'); ?></p>
<?php endif; ?>
<?php include (TEMPLATEPATH . '/the_bloglast.php'); ?>
</div> <!-- /.main2cols_sideright_left -->
<div class="main2cols_sideright_right">
<?php get_sidebar(); ?>
</div> <!-- /.main2cols_sideright_right -->
</div> <!-- /.main2cols_sideright -->
<?php get_footer(); ?>
</div> <!-- /#pagebody -->
</div> <!-- #container_wrapper -->
</div> <!-- #container -->
<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
<?php /* "Just what do you think you're doing Dave?" */ ?>
<?php wp_footer(); ?>
</body>
</html>