generated from vsoch/notes-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (103 loc) · 2.81 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
---
layout: page
css: ["index.css"]
permalink: /
---
<div class="row">
<h1>BUILD</h1>
<div>
{% include search_form.html %}
</div>
<div>{% include overview.html %}</div>
<h2>Notes</h2>
<hr>
<h5>Thrusts</h5>
<div class="thi-columns">
<ul class="tag-post">
{% for thrust in site.notes %}
{% if thrust.url contains 'thrust' %}<a class="post-title" href="{{ site.baseurl }}{{ thrust.url }}">
<li>
{{ thrust.title }}
</li>
</a>{% endif %}
{% endfor %}
</ul>
</div>
<h5>Papers</h5>
<div class="thi-columns">
<ul class="tag-post">
{% for paper in site.papers %}
<a class="post-title" href="{{ site.baseurl }}{{ paper.url }}">
<li>
{{ paper.title }}
</li>
</a>
{% endfor %}
</ul>
</div>
<h5>Topics</h5>
<div class="thi-columns">
<ul class="tag-post">
{% for note in site.notes %}
{% if note.url contains 'thrust' %}{% else %}<a class="post-title" href="{{ site.baseurl }}{{ note.url }}">
<li>
{{ note.title }}
</li>
</a>{% endif %}
{% endfor %}
</ul>
</div>
<h5>Writeups</h5>
<div class="thi-columns">
<ul class="tag-post">
{% for post in paginator.posts %}
<a class="post-title" href="{{ site.baseurl }}{{ post.url }}">
<li>
{{ post.title }} <small class="post-date">{{post.date | date: "%d/%m/%Y"}}</small>
</li>
</a>
{% endfor %}
</ul>
</div>
<div class="col s12 center-align">
<ul class="pagination">
<li class="{% unless paginator.previous_page %}disabled{% else %}waves-effect{% endunless %}">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="{{site.baseurl}}/">
{% else %}
<a href="{{site.baseurl}}/page{{paginator.previous_page}}">
{% endif %}
{% else %}
<a href="#!">
{% endif %}
<i class="material-icons">chevron_left</i>
</a>
</li>
{% if paginator.page == 1 %}
<li class="active teal">
<a href="#!">1</a>
{% else %}
<li class="waves-effect">
<a href="{{site.baseurl}}/">1</a>
{% endif %}
</li>
{% for count in (2..paginator.total_pages) %}
{% if count == paginator.page %}
<li class="active teal"><a href="#!">{{count}}</a></li>
{% else %}
<li class="waves-effect"><a href="{{site.baseurl}}/page{{count}}">{{count}}</a></li>
{% endif %}
{% endfor %}
<li class="{% unless paginator.next_page %}disabled{% else %}waves-effect{% endunless %}">
{% if paginator.next_page %}
<a href="{{site.baseurl}}/page{{paginator.next_page}}">
{% else %}
<a href="#!">
{% endif %}
<i class="material-icons">chevron_right</i>
</a>
</li>
</ul>
</div>
</div>