GoBlog/templates/blogstats.gohtml

17 lines
604 B
Plaintext
Raw Normal View History

2021-01-04 19:29:49 +00:00
{{ define "title" }}
2021-08-04 21:26:38 +00:00
<title>{{ with .Blog.BlogStats.Title }}{{ mdtitle . }} - {{ end }}{{ mdtitle .Blog.Title }}</title>
2021-01-04 19:29:49 +00:00
{{ end }}
{{ define "main" }}
<main>
2021-08-04 21:26:38 +00:00
{{ with .Blog.BlogStats.Title }}<h1>{{ mdtitle . }}</h1>{{ end }}
2021-01-04 19:29:49 +00:00
{{ with .Blog.BlogStats.Description }}{{ md . }}{{ end }}
<p id="loading" data-table="{{.Data.TableUrl}}">{{ string .Blog.Lang "loading" }}</p>
2021-04-23 18:52:12 +00:00
<script defer src="{{ asset "js/blogstats.js" }}"></script>
2021-01-04 19:29:49 +00:00
</main>
{{ if .CommentsEnabled }}{{ interactions .Blog .Canonical }}{{ end }}
2021-01-04 19:29:49 +00:00
{{ end }}
{{ define "blogstats" }}
{{ template "base" . }}
{{ end }}