aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-03-10 14:59:14 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-03-10 14:59:14 +0100
commit1100562e29f6476448b656dbddd4cf22505523f6 (patch)
tree442eec492199104bd49dfd74474ce89ade8fcac9 /templates/index.html
parenta40d80be378e46a6c490e1b99b0d8f4acd968503 (diff)
downloadmitjafelicijan.com-1100562e29f6476448b656dbddd4cf22505523f6.tar.gz
Move back to JBMAFP
Diffstat (limited to 'templates/index.html')
-rwxr-xr-xtemplates/index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100755
index 0000000..da06fd7
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,35 @@
1{{ template "base.html" . }}
2
3{{ define "content" }}
4<section>
5 <i>You do not learn by relaxing. You learn by violently assaulting your problem until it surrenders its mysteries to you.</i>
6</section>
7
8<a class="promobox" href="https://mitjafelicijan.github.io/binary-visualization/" target="_blank">
9 Examine graphical representations of binary files using diagrams that
10 illustrate connections between pairs of bytes (digraphs) and triplets
11 of bytes (trigraphs).
12</a>
13
14<section>
15 <h2>More long form, ramblings etc</h2>
16 <ul>
17 {{ range .Pages }}
18 {{ if and (eq .Type "post") (not .Draft) }}
19 <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
20 {{ end }}
21 {{ end }}
22 </ul>
23</section>
24
25<section>
26 <h2>Notes?! Maybe useful</h2>
27 <ul>
28 {{ range .Pages }}
29 {{ if and (eq .Type "note") (not .Draft) }}
30 <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
31 {{ end }}
32 {{ end }}
33 </ul>
34</section>
35{{ end }}