Newer
Older
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
---
layout: default
title: Blog - Frama-C
css: blog
---
<div id="wrapper" class="hfeed">
{% include headers.html header=5 title=Blog%}
<div id="container" class="mainContainer">
<div class="defaultPage blogsPage" id="content" role="main">
<div class="contentWrap">
<h1><strong>Blog</strong></h1>
<form class="searchForm mobileOnly" action="../index.html">
<button type="submit" class="submit searchLink pull-left disabled" title="Search"><i class=
"icon icon-search"></i></button><input type="text" name="s" value="" required="" placeholder=
"Search for the post here"><input type="hidden" name="post_type" value="post">
<div class="error" id="top_search_error" style="display: none;" role="alert">
Enter Search Term
</div>
</form>
</div>
<div class="contentWrap">
<div class="blogsSection">
<div class="blogsSectionContent">
{% if page.paginator %}
{% assign paginator = page.paginator %}
<h2 class="searchTitle"><span>Tag Archives:</span> <span class="search-terms">{{ page.title }}</span></h2>
{% endif %}
<div class="postLists">
{% for post in paginator.posts %}
<article>
<figure>
<a href="{{ post.url }}" class="img" style=
"background-image: url(/assets/img/default-blog.jpg);"></a>
</figure>
<div class="content">
<h3><a href="{{ post.url }}">{{ post.title }}</a>
<address>
{{ post.author }} on {{ post.date | date: "%-d %B %Y" }}
</address></h3>
<p>{{ post.content | strip_html | truncatewords: 50 }}</p><a href="{{ post.url }}">Read More</a>
</div>
</article>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<div class="pagination clearfix">
{% if paginator.previous_page %}
<a class="prev page-numbers" href="{{ paginator.previous_page_path }}">« Previous</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class='page-numbers current'>{{ page }}</span>
{% elsif page == 1%}
<a class='page-numbers' href="/blog/index.html">{{ page }}</a>
{% else %}
<a class='page-numbers' href="{{ site.paginate_path | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a class="next page-numbers" href="{{ paginator.next_page_path }}">Next »</a>
{% endif %}
</div>
{% endif %}
</div>
<aside id="sidebar" role="complementary">
<div id="sidebar_iv_point" class="inviewTop"></div>
<div id="sidebar_wrap" class="sidebarWrap">
<form class="searchForm" action="../index.html" data-parsley-validate="">
<input type="text" name="s" required="" value="" placeholder="Search for the post here"> <input type="hidden"
name="post_type" value="post"> <button type="submit" class="submit searchLink pull-left disabled" title=
"Search"><i class="icon icon-search"></i></button>
<div class="error" id="top_search_error" style="display: none;" role="alert">
Enter Search Term
</div>
</form>
<div class="tagsList">
<h4>Popular tags</h4>
<nav>
<a href="../tag/des/index.html" class="btn btnCancel"><span>Blog Test</span></a> <a href=
"../tag/test/index.html" class="btn btnCancel"><span>C - Programming</span></a> <a href=
"../tag/demo/index.html" class="btn btnCancel"><span>demo</span></a> <a href="../tag/ipsum/index.html" class=
"btn btnCancel"><span>ipsum</span></a> <a href="../tag/lorem/index.html" class=
"btn btnCancel"><span>lorem</span></a> <a href="../tag/sample-test/index.html" class=
"btn btnCancel"><span>Sample Test</span></a> <a href="../tag/wirefra/index.html" class=
"btn btnCancel"><span>wire</span></a>
</nav>
</div>
<div class="feedsList">
<h4>Feed</h4><a href="/html/feed.html" target="_blank">Feed</a>
</div>
</div>
</aside>
</div>
</div>
</div>
</div>
</div>