summaryrefslogtreecommitdiff
path: root/notes/index.html.tmpl
blob: 848a0871211fc6de8812796840975b9dee25b93e (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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Notes — tjp.lol</title>
<meta name="description" content="A public cut of my synced notes — a small digital garden.">
<link rel="stylesheet" href="../style.css">
</head>
<body>
<div class="wrap">

{{template "header" .}}
  <main>
    <section class="intro">
      <p>This is a digital garden; a public slice of the persistent notes I keep synced across my devices.</p>
    </section>

    <section>
      <h2 class="sec">start here</h2>
      <ul>
        <li><a href="/notes/sync/recipes/">My Recipes</a></li>
        <li><a href="/notes/sync/recipes/cocktails/">Cocktail Recipes</a></li>
      </ul>
    </section>

    <!--<section>
      <h2 class="sec">all notes</h2>
      {{$notes := sortPages (index .Pages "notes") "mod_time"}}{{with $notes}}<div class="note-index">
        {{range .}}<a href="{{rel "notes/index.html" .OutputPath}}">{{.Title}}</a>{{end}}
      </div>{{end}}
    </section>-->
  </main>

{{template "footer" .}}