-
Notifications
You must be signed in to change notification settings - Fork 164
/
index.html
27 lines (26 loc) · 876 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
---
layout: default
---
<div class="container">
<div class="card">
{% for post in site.posts %}
<article class="list-group-element">
<h1 class="list-group-element-heading">
<a href="{{ post.url | prepend:site.github.url }}">{{ post.title | escape }}</a>
</h1>
<footer class="list-group-element-footer">
{{ post.date | date: "%Y年%m月%d日" }}
</footer>
<p>
{{ post.description }}
</p>
<div class="list-group-element-images">
{% for actor_id in post.actor_ids %}
{% assign actor = site.actors[actor_id] %}
<img src="{{ actor.image_url | prepend:site.github.url }}" alt="{{ actor.name }}" class="list-group-element-images-element" width="40" height="40">
{% endfor %}
</div>
</article>
{% endfor %}
</div>
</div>