-
Notifications
You must be signed in to change notification settings - Fork 23
/
blog.html
40 lines (32 loc) · 1.15 KB
/
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
---
layout: default
title: TUNA 博客
permalink: /blog/
---
<div class="container mtb">
<div class="row">
<!-- BLOG POSTS LIST -->
<div class="col-lg-9">
{% for post in site.categories['blog'] %}
<!-- Blog Post -->
<div class="row">
<div class="col-lg-12">
<a href="{{ post.url | prepend: site.baseurl }}"><h3 class="ctitle">{{ post.title }}</h3></a>
<p><span class="fs-7">{{ post.date | date: "%b %-d, %Y" }}. | By: {{ post.author }}</span></p>
</div>
<div class="{%if post.thumb%}col-lg-9{%else%}col-lg-12{%endif%}">
{{ post.excerpt }}
<p><a href="{{ post.url | prepend: site.baseurl }}">[Read More]</a></p>
</div>
{% if post.thumb %}
<div class="col-lg-3">
<img class="img-fluid" src="{%if post.thumb contains 'http:' or post.thumb contains 'https:'%}{{post.thumb}}{%else%}{{"/assets/img/blog/"|prepend: site.baseurl}}{{post.thumb}}{%endif%}" />
</div>
{% endif %}
</div>
<hr />
{% endfor %}
</div><!--/col-lg-8 -->
{% include sidebar.html %}
</div><!--/row -->
</div><!--/container -->