aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html17
1 files changed, 15 insertions, 2 deletions
diff --git a/index.html b/index.html
index 3f7732c..0c6f846 100644
--- a/index.html
+++ b/index.html
@@ -5,14 +5,27 @@ layout: index
5<p>You do not learn by relaxing. You learn by violently assaulting your problem 5<p>You do not learn by relaxing. You learn by violently assaulting your problem
6until it surrenders its mysteries to you.</p> 6until it surrenders its mysteries to you.</p>
7 7
8<h2>Articles, notes, ramblings etc</h2> 8<h2>More long form, ramblings etc</h2>
9
10<ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Articles" class="list"> 9<ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Articles" class="list">
11 <meta itemprop="name" content="Article list"> 10 <meta itemprop="name" content="Article list">
12 {% for post in site.posts %} 11 {% for post in site.posts %}
12 {% if post.type == "post" %}
13 <li>
14 <a href="{{ post.url }}">{{ post.title }}</a>
15 </li>
16 {% endif %}
17 {% endfor %}
18</ul>
19
20<h2>Notes?! Maybe useful</h2>
21<ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Notes" class="list">
22 <meta itemprop="name" content="Note list">
23 {% for post in site.posts %}
24 {% if post.type == "note" %}
13 <li> 25 <li>
14 <a href="{{ post.url }}">{{ post.title }}</a> 26 <a href="{{ post.url }}">{{ post.title }}</a>
15 </li> 27 </li>
28 {% endif %}
16 {% endfor %} 29 {% endfor %}
17</ul> 30</ul>
18 31