-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpost.html
90 lines (89 loc) · 3.35 KB
/
post.html
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
layout: default
---
<section class="hentry">
<header>
<h2 class="entry-title">{{ page.title }}</h2>
<div class="entry-summary">
{{ page.description }}
</div>
</header>
<article class="entry-content">
{{ content }}
<hr />
{% if site.disqus %}
{% unless page.no-disqus %}
<div id="disqus_thread"></div>
<script src="http://disqus.com/forums/jnrowe/embed.js"></script>
<noscript><p><a href="http://jnrowe.disqus.com/?url=ref">View the discussion thread.</a></p></noscript>
{% endunless %}
{% endif %}
</article>
<footer class="page_meta">
<ul>
<li>
<a href="{{ page.url }}" rel="bookmark" title="Permalink">Permalink</a>
{% if page.tinyurl %}
<small>(<a href="http://tinyurl.com/{{ page.tinyurl }}">TinyURL link for this page</a>)</small>
{% endif %}
</li>
<li>
Posted at:
<time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date_to_long_string }}</time>
</li>
<li>
Updated at:
{% if page.updated %}
<time datetime="{{ page.updated }}">{{ page.updated | date_to_long_string }}</time>
{% else %}
<time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date_to_long_string }}</time>
{% endif %}
</li>
<li>
Related posts:
{% if site.related_posts | size > 0 %}
<em>No related items</em>
{% else %}
<ul>
{% for post in site.related_posts limit:3 %}
<li>
<span>{{ post.date | date_to_string }}</span> -
“<a href="{{ post.url }}">{{ post.title }}</a>”
</li>
{% endfor %}
</ul>
{% endif %}
</li>
<li>
<span class="tags">Tags:
{% if page.categories %}
{% for tag in page.categories %}
<a href="http://technorati.com/tags/{{ tag }}/" rel="tag directory">{{ tag }}</a>
{% endfor %}
{% else %}
<em>No tag data</em>
{% endif %}
</span>
</li>
<li>
Posted by:
<span class="author vcard"><a class="url fn" rel="me" href="/contact.html">James Rowe</a></span>
</li>
<li>
Rights: © <a class="rights" href="/copyright.html" title="Copyright info" accesskey="8">Copyright</a> 2010-2011, James Rowe.
</li>
</ul>
{% if site.disqus %}
{% unless page.no-disqus %}
<p><a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a></p>
{% endunless %}
{% endif%}
<p>
<a href="#content">Return to Top</a>
</p>
</footer>
<div class="clearer"></div>
</section>
{% comment %}
<!-- vim: set ft=liquid sw=4 sts=4 et tw=80 fileencoding=utf-8: -->
{% endcomment %}