aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: ce656ffce82162637b30b53e42bfb862f46c8d79 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{{ template "base.html" . }}

{{ define "content" }}

<section>
	<h2>Notes</h2>
	<table>
		<thead>
			<tr>
				<th>Date</th>
				<th>Title</th>
				<th></th>
			</tr>
		</thead>
		<tbody>
			{{ range .Pages }}
				{{ if and (not .Draft) (eq .Type "note") }}
				<tr>
					<td><time datetime="{{ .Created.Format "2006-01-02" }}">{{ .Created.Format "2006-01-02" }}</time></td>
					<td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
					<td class="tags">
						{{ if .Meta.tags }}
							{{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
						{{ end }}
					</td>
				</tr>
				{{ end }}
			{{ end }}
		</tbody>
	</table>
</section>

<section>
	<h2>Posts</h2>
	<table>
		<thead>
			<tr>
				<th>Date</th>
				<th>Title</th>
				<th></th>
			</tr>
		</thead>
		<tbody>
			{{ range .Pages }}
				{{ if and (not .Draft) (eq .Type "post") }}
				<tr>
					<td><time datetime="{{ .Created.Format "2006-01-02" }}">{{ .Created.Format "2006-01-02" }}</time></td>
					<td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
					<td class="tags">
						{{ if .Meta.tags }}
							{{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
						{{ end }}
					</td>
				</tr>
				{{ end }}
			{{ end }}
		</tbody>
	</table>
</section>

<section>
	<h2>Visualizations and exploration of binary files</h2>
	<a href="https://mitjafelicijan.github.io/binary-visualization/" target="_blank">
		<img src="/assets/general/trigraphs.gif" class="no-border">
	</a>
</section>
{{ end }}