forked from envygeeks/envygeeks.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 979 Bytes
/
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
---
main: true
---
{% for post in site.posts limit:3 %}
<article>
<header>
<h2>
<a href="{{ post.url | pretty }}">
{{
post.title | markdownify_title
}}
</a>
</h2>
</header>
<div>
{{
post.excerpt
}}
</div>
<footer>
<div class="avatar">
<a href="https://github.com/{{ post.author.handle }}" target="_blank">
<img src="{{
post.author.handle | github_avatar
}}">
</a>
</div>
<div>
<p class="author">
<a href="https://github.com/{{ post.author.handle }}" target="_blank">
{{
post.author.name
}}
</a>
</p>
<ul class="tags">
<li>tag</li>
<li>tag</li>
</ul>
<time>
{{
post.date | fancy_time
}}
</time>
</div>
</footer>
</article>
{% endfor %}