-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (56 loc) · 1.79 KB
/
index.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
---
layout: default
title: "Beware of programmers carrying screwdrivers"
---
<!-- Build: {{ site.github.build_revision }} -->
{% for post in paginator.posts %}
<h1 class="postTitle"><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="post">
<div class="date">
<span class="weekDay">{{ post.date | date: "%a" }}</span><br />
<span class="monthDay">{{ post.date | date: "%b %d" }}</span><br />
<span class="year">{{ post.date | date: "%Y" }}</span>
</div>
<div class="text">
{{ post.content }}
</div>
<div class="meta">
<a href="{{ post.url }}">Permalink</a> -
Posted at {{ post.date | date: "%I:%M %p" }} -
<a id="more" href="{{ post.url }}#disqus_thread" data-disqus-identifier="{{ post.url }}">Comments</a>
<br />
{% for c in post.categories %}
<span class="postCategory">{{ c }}</span>{% if forloop.last != true %},{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
<div class="paginator">
<div style="float: left">
{% if paginator.next_page %}
<a href="/page{{ paginator.next_page }}/">← Older</a>
{% endif %}
</div>
<div style="float: right">
{% if paginator.previous_page %}
<a href="
{% if paginator.previous_page == 1 %}
/
{% else %}
/page{{ paginator.previous_page }}
{% endif %}">Newer →</a>
{% endif %}
</div>
<div style="clear: both">
</div>
</div>
<br />
<script type="text/javascript">
var disqus_shortname = 'code-logic';
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>