Refactor templates and partials
This commit is contained in:
+4
-2
@@ -2,7 +2,9 @@
|
||||
{{ define "main"}}
|
||||
<main id="main">
|
||||
<div>
|
||||
<h1 id="title"><a href="{{ "/docs" }}">Go Home</a></h1>
|
||||
<h1 id="title"><a href="{{ "/" }}">Go Home</a></h1>
|
||||
</div>
|
||||
</main>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ define "toc" }} {{ end }}
|
||||
@@ -28,21 +28,14 @@
|
||||
|
||||
<div class="book-page">
|
||||
{{ partial "docs/mobile-header" . }}
|
||||
<article class="markdown">
|
||||
{{- .Content -}}
|
||||
</article>
|
||||
{{ template "main" . }}
|
||||
</div>
|
||||
|
||||
{{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }}
|
||||
{{ if and ($showToC) (.Page.TableOfContents) }}
|
||||
<aside class="book-toc fixed">
|
||||
{{ partial "docs/toc" . }}
|
||||
</aside>
|
||||
{{ end }}
|
||||
{{ template "toc" . }}
|
||||
|
||||
{{ partial "docs/inject/body" . }}
|
||||
{{ template "_internal/google_analytics_async.html" . }}
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -1 +1,9 @@
|
||||
{{ define "." }} {{ end }}
|
||||
{{ define "main" }}
|
||||
<article class="markdown">
|
||||
{{- .Content -}}
|
||||
</article>
|
||||
{{ end }}
|
||||
|
||||
{{ define "toc" }}
|
||||
{{ partial "docs/toc" . }}
|
||||
{{ end }}
|
||||
|
||||
@@ -1 +1,9 @@
|
||||
{{ define "." }} {{ end }}
|
||||
{{ define "main" }}
|
||||
<article class="markdown">
|
||||
{{- .Content -}}
|
||||
</article>
|
||||
{{ end }}
|
||||
|
||||
{{ define "toc" }}
|
||||
{{ partial "docs/toc" . }}
|
||||
{{ end }}
|
||||
|
||||
@@ -1 +1,6 @@
|
||||
{{ .Page.TableOfContents }}
|
||||
{{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }}
|
||||
{{ if and ($showToC) (.Page.TableOfContents) }}
|
||||
<aside class="book-toc fixed">
|
||||
{{ .Page.TableOfContents }}
|
||||
</aside>
|
||||
{{ end }}
|
||||
|
||||
@@ -16,4 +16,4 @@
|
||||
{{ template "_internal/google_analytics_async.html" . }}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -5,14 +5,16 @@
|
||||
<h2>
|
||||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||
</h2>
|
||||
<h5>{{ .Date.Format "January 2, 2006" }}</h5>
|
||||
<h5>
|
||||
<strong>{{ .Date.Format "January 2, 2006" }}</strong>
|
||||
</h5>
|
||||
<p>
|
||||
{{ .Summary }}
|
||||
{{- .Summary -}}
|
||||
{{ if .Truncated }}
|
||||
<a href="{{ .Permalink }}">...</a>
|
||||
<a href="{{ .Permalink }}">...</a>
|
||||
{{ end }}
|
||||
</p>
|
||||
</article>
|
||||
{{ end }}
|
||||
{{ template "_internal/pagination.html" . }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
{{ define "main" }}
|
||||
<header>
|
||||
<h1>{{ .Title }}</h1>
|
||||
<h5>{{ .Date.Format "January 2, 2006" }}</h5>
|
||||
<h5>
|
||||
<strong>{{ .Date.Format "January 2, 2006" }}</strong>
|
||||
</h5>
|
||||
</header>
|
||||
<article class="markdown">
|
||||
{{- .Content -}}
|
||||
</article>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
Reference in New Issue
Block a user