diff options
Diffstat (limited to 'templates/index.html')
| -rwxr-xr-x | templates/index.html | 35 |
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 }} | ||
