-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.31 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
---
layout: default
---
<div class="home">
<h1 class="page-heading">Tutorials</h1>
{% for post in site.posts %}
<div class="post-tutorial">
<div class="post-meta">
<span>
<i class="ss ss-calendar"></i>
{% if post.updated %}
Updated: {{ post.updated | date: "%b %-d, %Y" }}
{% else %}
Posted: {{ post.date | date: "%b %-d, %Y" }}
{% endif %}
</span>
<span class="post-author"><i class="ss ss-user"></i> {{ post.author }}</span>
</div>
<div class="post-image">
<img src="{{ post.image | prepend: site.baseurl }}" alt="Node.js image" />
</div>
<div class="post-content">
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<div class="post-tags-small">
<i class="ss ss-tag md"></i>
{% include tags.html %}
</div>
<div class="post-comments">
<i class="ss ss-chat"></i> <a href="{{ post.url | prepend: site.baseurl }}#disqus_thread">0 Comments</a>
</div>
</div>
</div>
{% endfor %}
<div>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>
</div>