-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
executable file
·41 lines (37 loc) · 973 Bytes
/
blog.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
39
40
41
---
layout: layout
title: Blog
---
<style>.container {
width: auto;
max-width: 800px;
text-align: center;
}
</style>
<div class="container">
<h3>Archive</h3>
<div class="panel panel-default">
<div class="panel-body">
{% for post in site.posts %}
<div class="row blog_post">
<div class="col-sm-4 col-md-4 col-lg-4">
<h5 class="post_date">
{{ post.date | date: "%B %e, %Y" }}
</h5>
</div>
<div class="col-sm-8 col-md-8 col-lg-8 post_title">
<h5 style="text-align: right">
<strong><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></strong>
</h5>
</div>
<div class="col-sm-12 col-md-12 col-lg-12">
{{ post.img }}
</div>
<div class="col-sm-12 tags">
{{ post.mytags }}
</div>
</div>
{% endfor %}
</div>
</div>
</div>