-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
41 lines (41 loc) · 1.43 KB
/
page.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
<?php
/**
* @package WordPress
* @subpackage geocology_Theme
*/
get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<div class="grid_5" id="topNavLinks">
<span class="navLink">← <a href="<?php bloginfo('url'); ?>" title="go back to the home page of our site">home</a></span>
</div>
</div><!-- contactNav -->
<div class="grid_12"><h1> </h1></div> <!-- shameful hack for vertical line & whitespace -->
<div class="grid_6">
<h2>
<?php
the_title();
?>
</h2>
<div>
<?php
the_content();
?>
</div>
<?php edit_post_link(); ?>
</div>
<div class="grid_6">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'project-medium', $img_args );
} ?>
</div>
<div class="grid_12 navLinks">
<span class="navLink">← <a href="<?php bloginfo('url'); ?>" title="go back to the home page">home</a></span>
<span class="navLink"><a href="#top" title="jump back to the top of this page">top</a> ↑</span>
</div>
<?php endwhile; else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
<?php get_footer(); ?>