-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts.html
76 lines (60 loc) · 1.97 KB
/
posts.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
---
layout: default
redirect_from:
- /glog/
- /Glog/
---
<div class="container-fluid index">
<div class="row index all-posts">
<h1 class="header author-header">Search</h1>
<div id="search-container">
<input type="text" id="search-input" placeholder="Type here...">
<div class="col-md-12 content-panel articles">
<ul id="results-container"><small>Start typing to see some results</small></ul>
</div>
</div>
</div>
</div>
<hr class="search-hr" />
<script src="{{ site.baseurl }}/js/jekyll-search.js" type="text/javascript"></script>
<script type="text/javascript">
SimpleJekyllSearch.init({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
dataSource: '{{ site.baseurl }}/search.json',
searchResultTemplate: '<li><a href="{url}" title="{desc}">{title}<\/a><\/li>',
noResultsText: 'No results found',
limit: 10,
fuzzy: true,
})
</script>
<div class="container-fluid index">
<div class="row index all-posts">
<h1 class="header author-header">{{ site.author_name }}</h1>
<h2 class="header" itemprop="headline">All posts</h2>
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% if forloop.first %}
<div class="col-md-12 content-panel articles">
<h2 id="{{ this_year }}-ref">{{ this_year }}</h2>
<ul>
{% endif %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% if forloop.last %}
</ul>
</div>
{% else %}
{% if this_year != next_year %}
</ul>
</div>
<div class="col-md-12 content-panel articles">
<h2 id="{{ next_year }}-ref">{{next_year}}</h2>
<ul>
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>