aboutsummaryrefslogtreecommitdiff
path: root/tmpl
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-02-17 16:53:04 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-02-17 16:53:04 +0100
commit98ffc2688cb8cc31ffb1c24e0d07977e1b61bca7 (patch)
treeeafd82a89ab20cfbf257129c72ca8fdd65261ffc /tmpl
parentee22fe4ee5fc422d9e245e322801c1842803dfd6 (diff)
Add tooltips, rename Root into Home
Diffstat (limited to 'tmpl')
-rw-r--r--tmpl/root8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmpl/root b/tmpl/root
index ee0fa9d..4d7aeb0 100644
--- a/tmpl/root
+++ b/tmpl/root
@@ -12,11 +12,11 @@
<header>
<h1>{{template "title" .}}</h1>
<nav>
- <a href="/"><i class="fa fa-home"></i></a>
- <a href="/index"><i class="fa fa-list"></i></a>
+ <a href="/" title="home"><i class="fa fa-home"></i></a>
+ <a href="/index" title="index"><i class="fa fa-list"></i></a>
{{with .Title}}
- <a href="/edit/{{.}}"><i class="fa fa-pencil"></i></a>
- <a href="/del/{{.}}"><i class="fa fa-trash"></i></a>
+ <a href="/edit/{{.}}" title="edit {{.}}"><i class="fa fa-pencil"></i></a>
+ <a href="/del/{{.}}" title="delete {{.}}"><i class="fa fa-trash"></i></a>
{{end}}
</nav>
</header>