Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsingle.php
More file actions
Latest commit
34 lines (33 loc) · 1.55 KB
/
Copy pathsingle.php
File metadata and controls
34 lines (33 loc) · 1.55 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
34
<?phpget_header(); ?>
<div class="page-section">
<?phpwhile (have_posts()) : the_post(); ?>
<section class="hero">
<div class="text">
<div class="wrapper">
<div class="section-title">
<h1 class="cat-highlight"><?phpthe_title(); ?></h1>
<div class="section-runner blog-meta-data">
<p>Posted by <span class="author-link"><?phpthe_author_posts_link(); ?></span> on <?phpthe_time('j F Y'); ?></p>
</div>
<div class="project-social">
<ul>
<li><a href="http://twitter.com/share?text=Check out this article on Fieldwork's blog...&url=<?phpthe_permalink(); ?>" target="_blank">Tweet</a></li>
<li><a href="https://www.facebook.com/sharer/sharer.php?u=<?phpthe_permalink(); ?>" target="_blank">Share</a></li>
<li><a href="http://pinterest.com/pin/create/button/?url=<?phpthe_permalink(); ?>&media=<?phpechowp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>" target="_blank">Pin</a></li>
<li><a href="http://www.tumblr.com/share/photo?source=<?phpechowp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>&caption=<?phpthe_excerpt(); ?>&clickthru=" target="_blank">Tumbl</a></li>
</ul>
</div>
</div>
<div class="section-text section-text--large blog-content">
<?phpthe_content(); ?>
</div>
<div class="related-posts">
<?phpnext_post_link('<p class="link-title">Next Post</p> %link'); ?>
<?phpprevious_post_link('<p class="link-title">Previous Post</p> %link'); ?>
</div>
</div>
</div>
</section>
<?phpendwhile?>
</div>
<?phpget_footer(); ?>