-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathall.html
More file actions
31 lines (28 loc) · 773 Bytes
/
all.html
File metadata and controls
31 lines (28 loc) · 773 Bytes
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
---
layout: admin
title: Danh sách toàn bộ bài viết
page_title: Danh sách toàn bộ bài viết - Blog Măng cụt
---
<h2>Danh sách toàn bộ bài viết trên Blog Măng cụt</h2>
<style>
span.info {
border: 1px solid #ccc;
padding: 0 6px;
font-size: 80%;
}
span.hilight {
color:red;
}
</style>
<ol>
{% for post in site.posts %}
<li><a href="{{post.url}}">{{post.title}}</a> <span class="info">{{post.content | strip_html | number_of_words}} từ
{% include view_count.html url=post.url simple="true" min_count=1 out="false" %}
{% if mc_i_viewCount > 0 %} - <span class="hilight">{{mc_i_formatedViewCount}}</span> lượt xem{% endif %}
</span></li>
{% endfor %}
</ol>
<p><a href="/">Về trang chủ</a></a>
<script>
{% include analytics.js %}
</script>