-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
38 lines (37 loc) · 1.27 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
---
layout: default
---
<div class="container">
<div class="row">
<div class="column-small-push-1 column-small-10">
{% for post in site.posts %}
<a class="list-group-element color-inherit" href="{{ post.url }}">
<h1 class="list-group-element-heading color-link">
{{ post.title | escape }}
</h1>
<p class="list-group-element-note">
{{ post.date | date: "%Y年%m月%d日" }}
</p>
<p class="list-group-element-description">
{{ post.description }}
</p>
<div class="list-group-element-actors">
<div class="row">
{% for actor_id in post.actor_ids %}
{% assign actor = site.actors[actor_id] %}
<div class="column-small-4">
<div class="list-group-element-actor">
<img src="{{ actor.image_url }}" alt="{{ actor.name }}" class="list-group-element-actor-icon" width="32" height="32">
<span class="list-group-element-actor-name">
{{ actor.name }}
</span>
</div>
</div>
{% endfor %}
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</div>