-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
68 lines (65 loc) · 1.79 KB
/
post.html
File metadata and controls
68 lines (65 loc) · 1.79 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
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
---
layout: default
---
<section class="post">
{{ content }}
</section>
<section class="meta">
<br/>
<br/>
<span>
<a {% if page.previous %} href="{{ site.url }}{{ page.previous.url }}" class="pageNav"{% endif %} {% unless page.previous %} class="pageNavInvalid" {% endunless %} >Previous</a>
<a {% if page.next %} href="{{ site.url }}{{ page.next.url }}" class="pageNav"{% endif %} {% unless page.next %} class="pageNavInvalid" {% endunless %} >Next</a>
</span>
<hr>
<span class="author">
<a href="http://webfrogs.github.com">{{ site.author }}</a>
</span>
<span class="time">
/
<time datetime="{{ page.date | date:"%Y-%m-%d" }}">{{ page.date | date:"%Y-%m-%d" }}</time>
</span>
<br />
<span class="license">
Published under <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">(CC) BY-NC-SA</a>
</span>
{% if page.categories %}
<span class="categories">
in categories
{% for cat in page.categories %}
<a href="/categories/#{{ cat }}" title="{{ cat }}">{{ cat }}</a>
{% endfor %}
</span>
{% endif %}
{% if page.tags %}
<span class="tags">
tagged with
{% for tag in page.tags %}
<a href="/tags/#{{ tag }}" title="{{ tag }}">{{ tag }}</a>
{% endfor %}
</span>
{% endif %}
</section>
<!--
<script type="text/javascript">
$(function(){
$(document).keydown(function(e) {
var url = false;
if (e.which == 37 || e.which == 74) { // Left arrow and J
{% if page.previous %}
url = '{{ site.url }}{{ page.previous.url }}';
{% endif %}
}
else if (e.which == 39 || e.which == 75) { // Right arrow and K
{% if page.next %}
url = '{{ site.url }}{{ page.next.url }}';
{% endif %}
}
if (url) {
window.location = url;
}
});
})
</script>
-->