-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.html
29 lines (27 loc) · 1.04 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
---
layout: page
title: Well, Hello There!
---
<ul class="posts">
{% for post in paginator.posts %}
<li class="post">
<small>{{ post.date | date_to_string }}</small>
<small><a style="color:grey" href="{{ BASE_PATH }}{{ post.url }}#disqus_thread"></a></small>
<br>
<a class="nice-title" href="{{ post.url | relative_url }}">{{ post.title }}</a>
<p class="nice-text">{{ post.content | strip_html | truncatewords: 50 }} <a href="{{ post.url | relative_url }}">Read more!</a></p>
</li>
{% endfor %}
{% include pagination.html %}
</ul>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES * * */
var disqus_shortname = 'nagekar';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>