-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
36 lines (33 loc) · 1.14 KB
/
notes.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
---
layout: default
---
<div id="notes-intro">
<div class="container">
<h2>Notes</h2>
<p>Whenever I learn something, I put here as references.</p>
</div>
</div>
<section class="post-list">
<div class="container">
<div class="note-list">
{% for title in site.notes %}
{% if title.type == "title" %}
<div class="note-group">
<div class="note-title">
{{ title.title }}
</div>
<ul>
{% for note in site.notes %}
{% if note.type == "note" %}
{% if title.alias == note.alias %}
<li><a class="underline" href="{{ note.url | prepend: site.baseurl }}">{{ note.title }}</a></li>
{% endif %}
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</section>