-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (28 loc) · 1.14 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
---
layout: home
title: Home
---
<section class="posts">
{% for post in site.posts %}{% if post.invisible != true %}
<article class="post-preview">
<header>
<h1><a href="{{ post.url }}{% if site.posts.first == post %}#post-start{% endif %}">{{ post.title }}</a></h1>
<time datetime="{{ post.date | date: "%F %R" }}"><span>{{ post.date | date_to_string }}</span></time>
</header>
{{ post.excerpt }}
<footer class="actions">
<a class="disqus-count" href="{{ post.url }}#disqus_thread" data-disqus-identifier="{{ post.url }}"></a>
<a class="continue-reading" href="{{ post.url }}{% if site.posts.first == post %}#post-start{% endif %}"><span>Continue reading ></span></a>
</footer>
</article>
{% endif %}{% endfor %}
</section>
<script type="text/javascript">
var disqus_shortname = 'colorglare';
(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>