forked from MozillaTN/mozillatn.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (21 loc) · 848 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
---
---
<ul id="tag-post-list" >
{% for post in paginator.posts %}
<li class="cards">
<div class="tagauthor">
<div id="tag-meta">
{% assign author = site.data.people[post.author] %}
<a href="/about/{{ post.author }}">
<img class="avatar" src="{{ author.gravatar}}">
</a>
</div>
</div>
<div class="tagposts">
<a href="{{ site.baseurl }}{{ post.url | remove_first: '/' }}" class="container">{{ post.title }}
<h2>{{ post.description }}</h2>
</a>
</div>
</li>
{% endfor %}
</ul>