aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-11 01:21:22 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-11 01:21:22 +0300
commita79499018bed35bab05f888ce0103b37655e2852 (patch)
treed182886009aeafffb247a68ff425c740b3cb6a31 /layouts
parent418eac8c0b978089644f48e27a0fbdd20e18ac91 (diff)
Auto-commit 2024-12-11
Diffstat (limited to 'layouts')
-rw-r--r--layouts/go/single.htm4
-rw-r--r--layouts/go/single.html34
2 files changed, 34 insertions, 4 deletions
diff --git a/layouts/go/single.htm b/layouts/go/single.htm
deleted file mode 100644
index 2a5ea73..0000000
--- a/layouts/go/single.htm
+++ /dev/null
@@ -1,4 +0,0 @@
-<html><head>
- <meta name="go-import" content="neonxp.ru/go/{{.Params.Name}} git {{.Params.Repository}}">
- <meta name="go-source" content="neonxp.ru/go/{{.Params.Name}} {{.Params.Repository}}/tree/">
-</head></html> \ No newline at end of file
diff --git a/layouts/go/single.html b/layouts/go/single.html
new file mode 100644
index 0000000..6b287cb
--- /dev/null
+++ b/layouts/go/single.html
@@ -0,0 +1,34 @@
+{{ define "main" }}
+<div class="row">
+ <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar">
+ {{ if .Params.toc }}
+ <article>
+ <header>Содержание</header>
+ <aside>{{ .TableOfContents }}</aside>
+ </article>
+ {{ end }}
+ <article>
+ <header>Навигатор</header>
+ {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
+ </article>
+ </div>
+ <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
+ <article>
+ <header>
+ <div class="row between-xs">
+ <span class="p-name"> {{ .Title }} </span>
+ <a href="https://godoc.neonxp.ru/neonxp.ru/go/{{ .Params.Name }}"><img src="https://godoc.neonxp.ru/neonxp.ru/go/{{ .Params.Name }}?status.svg" /></a>
+ </div>
+ </header>
+ {{ if .Params.Image }}
+ <img src="{{.Params.Image}}" />
+ {{ end }}
+ <div class="p-summary">{{ .Summary }}</div>
+ <div class="e-content">{{ .Content }}</div>
+ <footer>
+ </footer>
+ </article>
+ {{ if .Params.comments }} {{ partial "comments.html" . }} {{ end }}
+ </div>
+</div>
+{{ end }}