summaryrefslogtreecommitdiff
path: root/_includes/index_post.liquid
blob: 2bfbe684ae18564818e70b49bc2e63ba552335bd (plain)
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
<div class="columns mb-6">
    <div class="column">
	<div class="columns">
	    <h1>
		{{ post.title }}
	    </h1>
	</div>
	<div class="columns is-vcentered">
	    <div class="column">
		<div class="columns">
		    {% for tag in post.tags %}
			{{ tag }}{% unless forloop.last %},{% endunless %}
		    {% endfor %}
		</div>
		<div class="columns">
		    {{ post.date | date: "%-d %B %Y" }}
		</div>
	    </div>
	    <div class="is-offset-2 column">
		<a class="button" href="{{ post.url }}">
		    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-book-fill mr-2" viewBox="0 0 16 16">
			<path d="M8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783"/>
		    </svg>
		    Read
		</a>
	    </div>
	</div>
    </div>
</div>