-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.html
executable file
·26 lines (26 loc) · 994 Bytes
/
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
---
layout: page
title: "Notes"
description: "Notes Description"
date: 2019-09-29 00:00:00 +0100
tags: []
permalink: /notes/
---
<ul class="item-list grid">
{%- assign notes = site.notes | sort: 'date' | reverse -%}
{%- for note in notes %}
<li>
<article class="article">
<span class="date">{{ note.date | date: "%d %b %Y" }}</span>
<span class="type">Article</span>
<h1><a aria-label="{{ note.title | escape }}" href="{{ note.url | relative_url }}">{{ note.title | escape }}</a></h1>
<ul class="tags">
{%- for tag in note.tags -%}
<li class="variant-b"><a href="/tags/#{{tag}}">{{tag}}</a></li>
{% endfor -%}
</ul>
<p><a aria-label="{{ note.title | escape }}" href="{{ note.url | relative_url }}">{{ note.description | escape }}</a></p>
</article>
</li>
{%- endfor %}
</ul>