-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathblog.html
46 lines (39 loc) · 1.12 KB
/
blog.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
---
layout: page
title: noBackend Blog
tab: blog
---
<section class="posts">
{% for post in site.posts %}
<article>
<header>
<h2>
<a href=".{{ post.url }}">{{ post.title }}</a>
</h2>
<p>
by {{ post.author }} | {{ post.date | date_to_string }}
</p>
</header>
{{ post.excerpt }}
<p class="more">
<a href=".{{ post.url }}">read more</a>
| <a href=".{{ post.url }}#disqus_thread" data-disqus-identifier>comments</a>
</p>
</article>
{% endfor %}
</section>
<div class="box">
<h3>Have something to say?</h3>
<a href="{{ site.github_url }}/new/gh-pages/_posts" class="addNewPost">Write a new blog post</a> on GitHub.
</div>
<!-- disqus: adding comment count -->
<script type="text/javascript">
var disqus_shortname = 'nobackend';
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//nobackend.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<!-- /disqus -->