summaryrefslogtreecommitdiff
path: root/htdocs/template/root.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/template/root.tmpl')
-rw-r--r--htdocs/template/root.tmpl80
1 files changed, 80 insertions, 0 deletions
diff --git a/htdocs/template/root.tmpl b/htdocs/template/root.tmpl
new file mode 100644
index 0000000..164cf31
--- /dev/null
+++ b/htdocs/template/root.tmpl
@@ -0,0 +1,80 @@
+{{/* This template is combined with other templates to render blog pages. */}}
+
+{{define "root" -}}
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>{{template "title" .}}</title>
+
+ <meta charset="utf-8">
+ <meta name="google-site-verification" content="3cwuN4OwVfNZEGTw5Q9UotI2AJCTzr8F7QB8uhtfAWo">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abel|Raleway|Space+Mono">
+ <link rel="stylesheet" href="/static/style.css">
+ <link rel="alternate" type="application/atom+xml" title="Atom Feed" href="/feed.atom">
+
+ <!-- Global site tag (gtag.js) - Google Analytics -->
+ <script async src="https://www.googletagmanager.com/gtag/js?id=UA-22272807-1"></script>
+ <script>
+ window.dataLayer = window.dataLayer || [];
+ function gtag(){dataLayer.push(arguments);}
+ gtag('js', new Date());
+ gtag('config', 'UA-22272807-1');
+ </script>
+</head>
+<body>
+ <nav class="navbar navbar-expand-sm">
+ <div class="container-fluid">
+ <a class="navbar-brand" href="{{.BasePath}}/">dim13·blog</a>
+ <ul class="navbar-nav">
+ <li class="nav-item"><a class="nav-link" href="{{.BasePath}}/Who-am-I">Who am I</a></li>
+ <li class="nav-item"><a class="nav-link" href="//github.com/dim13">GitHub</a></li>
+ <li class="nav-item"><a class="nav-link" href="//git.dim13.org">Local Git</a></li>
+ <li class="nav-item"><a class="nav-link" href="//ftp.dim13.org">Public FTP</a></li>
+ <li class="nav-item"><a class="nav-link" href="{{.BasePath}}/index">Blog Index</a></li>
+ </ul>
+ </div>
+ </nav>
+
+ <div class="container">
+ {{template "content" .}}
+ </div>
+
+ {{with .Doc}}
+ <nav class="navbar navbar-expand-sm">
+ <div class="container-fluid">
+ <ul class="navbar-nav">
+ {{with .Older}}
+ <li class="nav-item"><a class="nav-link" href="{{.Path}}">&larr; {{.Title}}</a></li>
+ {{end}}
+ </ul>
+ <ul class="navbar-nav">
+ {{with .Newer}}
+ <li class="nav-item"><a class="nav-link" href="{{.Path}}">{{.Title}} &rarr;</a></li>
+ {{end}}
+ </ul>
+ </div>
+ </nav>
+ {{end}}
+</body>
+</html>
+{{end}}
+
+{{define "doc"}}
+ <article>
+ <header>
+ <h2><a href="{{.Path}}">{{.Title}}</a></h2>
+ {{template "time" .Time}}
+ </header>
+ {{.HTML}}
+ <footer>
+ {{with .Authors}}<address>By {{authors .}}</address>{{end}}
+ </footer>
+ </article>
+{{end}}
+
+{{define "time" -}}
+<time datetime="{{.Format "2006-01-02T15:04:05Z07:00"}}">{{.Format "2 January 2006"}}</time>
+{{- end}}