summaryrefslogtreecommitdiff
path: root/notes/index.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'notes/index.html.tmpl')
-rw-r--r--notes/index.html.tmpl14
1 files changed, 9 insertions, 5 deletions
diff --git a/notes/index.html.tmpl b/notes/index.html.tmpl
index 848a087..66c1f43 100644
--- a/notes/index.html.tmpl
+++ b/notes/index.html.tmpl
@@ -13,19 +13,23 @@
{{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>
+ <p>A public slice of the persistent notes I keep synced across my devices.</p>
</section>
<section>
- <h2 class="sec">start here</h2>
+ <h2>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>
+ <li>
+ <a href="/notes/sync/recipes/">My Recipes</a>
+ <ul>
+ <li><a href="/notes/sync/recipes/cocktails/">Cocktail Recipes</a></li>
+ </ul>
+ </li>
</ul>
</section>
<!--<section>
- <h2 class="sec">all notes</h2>
+ <h2>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}}