forked from Malows/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.56 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.56 KB
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
---
layout: home
---
<section class="ve-articles">
<div class="container">
<div class="columns">
{% for post in site.posts %}
<div class="one-third column">
<div class="ve-box box-shadow mb-5">
<div class="ve-box-image">
<img class="ve-img-responsive" src="{{ post.thumbnail }}" >
</div>
<div class="ve-box-content p-3">
<h3 class="ve-box-title pb-2">
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
<div class="ve-box-body mb-5">
<p>{{ post.description }}</p>
</div>
<div class="ve-box-author d-flex flex-justify-start">
<div class="ve-box-author-avatar pr-3">
<a href="https://github.com/{{ post.github }}">
<img alt="{{ post.github }}" width="40" height="40" src="https://avatars3.githubusercontent.com/{{ post.github }}?v=3&s=80">
</a>
</div>
<div>
<strong>{{ post.author }}</strong> <br>
<small>{{ post.date | date_to_string }}</small>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</section>