-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (65 loc) · 2.74 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
layout: default
---
<div class="row">
<div class="large-7 columns samping">
{% for post in paginator.posts %}
<article class="post tag-speeches">
<div style="padding: 20px;">
<header class="post-header">
<h2 class="post-title"><a id="route" href="{{ post.url | prepend: site.baseurl }}"><b>{{ post.title }}</b></a></h2>
</header>
<section class="post-excerpt">
<p>
{% if post.content contains '<!--index-->' %}
{{ post.content | split:'<!--index-->' | first }}
...<br><a id="route" class="read-more" href="{{ post.url | prepend: site.baseurl }}">» Read More</a>
{% else %}
{{ post.content }}
{% endif %}
</p>
</section>
</div>
<footer class="post-meta" style="background: #534399;
padding: 10px 0 0px 20px;">
<p class="post-tags"><i class="typico typcn typcn-tags" style=" font-size: 28px;
position: relative;
top: 1px;
font-size:15px"></i> {% include post-tags.html %}</p>
<time class="post-date" datetime="{{ post.date | date_to_xmlschema }}" style="color:#fff;"><i class="typico typcn typcn-calendar-outline" style=" font-size: 28px;
position: relative;
top: 1px;
font-size:15px"></i> {{ post.date | date: "%b %-d, %Y" }}</time>
<p class="post-date"><i class="typico typcn typcn-messages" style=" font-size: 28px;
position: relative;
top: 1px;
font-size:15px"></i> <a id="route" class="disqus-comment-count" href="{{post.url}}#disqus_thread" style="color:#fff"> 0 Comments</a></p>
</footer>
</article>
{% endfor %}
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a id="route" href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="previous"><i class="typcn typcn-chevron-left-outline" style=" font-size: 14px;
position: relative;
"></i> Previous</a>
{% else %}
<span class="previous" align="left"><i class="typcn typcn-chevron-left-outline" style=" font-size: 14px;
position: relative;
"></i> Previous</span>
{% endif %}
{% if paginator.next_page %}
<a id="route" href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="next">Next <i class="typcn typcn-chevron-right-outline" style=" font-size: 14px;
position: relative;
"></i></a>
{% else %}
<span class="next" align="right">Next <i class="typcn typcn-chevron-right-outline" style=" font-size: 14px;
position: relative;
"></i></span>
{% endif %}
</div>
<script id="dsq-count-scr" src="//dymani.disqus.com/count.js" async></script>
</div>
{% include widgets.html %}
</div>
</div>