-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
48 lines (47 loc) · 1.61 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
37
38
39
40
41
42
43
44
45
46
47
48
---
layout: default
title: About
---
{% include navigation.html %}
<div class="container-md">
<div class="row justify-content-start mb-4 ml-top-padding">
<div class="heading-title col-12 col-lg-8">
<h1 class="heading-title">Notes</h1>
<p class="lead">Things I am independently learning and researching.</p>
<p>
I'm not keen for chronological feeds because they
<a
href="https://stackingthebricks.com/how-blogs-broke-the-web/"
target="_blank"
>ruined the fun web</a
>. If you want to see my personal Table of Contents, check
<a href="/notes/toc">here</a>.
</p>
<p>
However, in this page you can see a list of all my public notes sorted
by last updated time. This ensures that the notes I am more actively
working on are shown first.
</p>
<p>
If some things do not make sense, it is probably because the context is
my private notes for my own understanding, sorry! I am constantly
refining my notes and publish the ones the are the most relevant.
</p>
<div class="related-wrapper">
{% assign note_items = site.notes | sort: "date" | reverse %} {% for
note_items in note_items %}
<div class="row mb-3 mb-md-0">
<div class="col-12 col-md-3">
{{ note_items.date | date: "%B, %Y" }}
</div>
<div class="col">
<a href="{{ note_items.url | relative_url }}"
>{{ note_items.title }}</a
>
</div>
</div>
{%- endfor -%}
</div>
</div>
</div>
</div>