GoBlog/templates/blogstats.gohtml

19 lines
604 B
Plaintext
Raw Normal View History

2021-01-04 19:29:49 +00:00
{{ define "title" }}
2021-08-04 20:48:50 +00:00
<title>{{ with .Blog.BlogStats.Title }}{{ mdtext . }} - {{ end }}{{ mdtext .Blog.Title }}</title>
2021-01-04 19:29:49 +00:00
{{ end }}
{{ define "main" }}
<main>
2021-08-04 20:48:50 +00:00
{{ with .Blog.BlogStats.Title }}<h1>{{ mdtext . }}</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 }}
{{ include "interactions" . }}
{{ end }}
2021-01-04 19:29:49 +00:00
{{ end }}
{{ define "blogstats" }}
{{ template "base" . }}
{{ end }}