-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 942 Bytes
/
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
---
layout: default
---
<!-- AND THE DEV LOG STARTS FROM HERE -->
{% assign flag = true%}
<ul class="collapsible popout" data-collapsible="expandable">
{% for category in site.categories reversed%}
<li>
<div class="collapsible-header
{% if flag %}
active
{% assign flag = false %}
{% endif %}
waves-effect waves-light teal darken-2 white-text">
<i class="mega-octicon octicon-calendar"></i>
<b>{{ category | first }} </b>
</div>
<div class="collapsible-body teal lighten-5">
<table class="daywise-list-container">
{% for posts in category %}
{% for post in posts %}
{% if post.content %}
<tr>
<td><li><b>{{ post.date | date: "%-d %B" }}</b></li></td>
<td>
{{ post.content | remove: '<p>' | remove: '</p>' }}
</td>
</tr>
{% endif %}
{% endfor %}
{% endfor %}
</table>
</div>
</li>
{% endfor %}
</ul>