aboutsummaryrefslogtreecommitdiffstats
path: root/template.html
diff options
context:
space:
mode:
Diffstat (limited to 'template.html')
-rw-r--r--template.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/template.html b/template.html
deleted file mode 100644
index 1e56d6f..0000000
--- a/template.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>{{.SiteTitle}} - Docs</title>
- <link rel="stylesheet" href="{{.StylesheetUrl}}" />
- <meta charset="UTF-8">
- <meta name="author" content="Eduardo Pedroni">
- </head>
- <body>
- <header>{{.SiteTitle}}</header>
- <nav>
- <ul>
- {{range .Nav}}
- <li>
- <a href="{{.AbsoluteUrl}}">{{.Text}}</a>
- </li>
- {{end}}
- </ul>
- </nav>
- <main>
- {{range .Content}}
- <article>
- {{.}}
- </article>
- {{end}}
- </main>
- </body>
-</html>