aboutsummaryrefslogtreecommitdiff
path: root/layouts/go/single.html
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-15 03:56:47 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-15 03:56:47 +0300
commita9168e6f04f766f7d88bc1b24aaa81336098b2fc (patch)
treea4db599140020cfb14803aa4d28b17d52e637a72 /layouts/go/single.html
parent3b040f1503d90a309f41063d8f760a3e312ab351 (diff)
Auto-commit 2024-12-15
Diffstat (limited to 'layouts/go/single.html')
-rw-r--r--layouts/go/single.html46
1 files changed, 11 insertions, 35 deletions
diff --git a/layouts/go/single.html b/layouts/go/single.html
index e7c1c90..ca30873 100644
--- a/layouts/go/single.html
+++ b/layouts/go/single.html
@@ -1,37 +1,13 @@
{{ 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 class="posts-container mx-auto my-5">
+ <div class="post">
+ {{ partial "single/header.html" . }}
+ <div>
+ Установка:
+ <pre>go get -u neonxp.ru/go/{{ .Params.Name }}@latest</pre>
+ </div>
+ <div class="e-content">{{ .Content }}</div>
+ {{ partial "single/footer.html" . }}
</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>
- </div>
- </header>
- {{ if .Params.Image }}
- <img src="{{.Params.Image}}" />
- {{ end }}
- <div>
- Установка:
- <pre>go get -u neonxp.ru/go/{{ .Params.Name }}@latest</pre>
- </div>
- <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 }}
+ </div>
+{{ end }} \ No newline at end of file