mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 11:29:28 +00:00
Refactor templates and partials
This commit is contained in:
parent
461aafe995
commit
76c251066f
@ -26,6 +26,10 @@
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
@mixin fixed {
|
@mixin fixed {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -34,6 +38,12 @@
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hide {
|
@mixin dark-links {
|
||||||
display: none;
|
a {
|
||||||
|
color: $nav-link-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.active {
|
||||||
|
color: $color-link;
|
||||||
|
}
|
||||||
}
|
}
|
@ -103,13 +103,7 @@ ul.pagination {
|
|||||||
@include fixed;
|
@include fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
@include dark-links;
|
||||||
color: $nav-link-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.active {
|
|
||||||
color: $color-link;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.book-page {
|
.book-page {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Index
|
title: Introduction
|
||||||
type: docs
|
type: docs
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
{{ define "main"}}
|
{{ define "main"}}
|
||||||
<main id="main">
|
<main id="main">
|
||||||
<div>
|
<div>
|
||||||
<h1 id="title"><a href="{{ "/docs" }}">Go Home</a></h1>
|
<h1 id="title"><a href="{{ "/" }}">Go Home</a></h1>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ define "toc" }} {{ end }}
|
@ -28,17 +28,10 @@
|
|||||||
|
|
||||||
<div class="book-page">
|
<div class="book-page">
|
||||||
{{ partial "docs/mobile-header" . }}
|
{{ partial "docs/mobile-header" . }}
|
||||||
<article class="markdown">
|
{{ template "main" . }}
|
||||||
{{- .Content -}}
|
|
||||||
</article>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }}
|
{{ template "toc" . }}
|
||||||
{{ if and ($showToC) (.Page.TableOfContents) }}
|
|
||||||
<aside class="book-toc fixed">
|
|
||||||
{{ partial "docs/toc" . }}
|
|
||||||
</aside>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ partial "docs/inject/body" . }}
|
{{ partial "docs/inject/body" . }}
|
||||||
{{ template "_internal/google_analytics_async.html" . }}
|
{{ template "_internal/google_analytics_async.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 @@
|
|||||||
|
{{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }}
|
||||||
|
{{ if and ($showToC) (.Page.TableOfContents) }}
|
||||||
|
<aside class="book-toc fixed">
|
||||||
{{ .Page.TableOfContents }}
|
{{ .Page.TableOfContents }}
|
||||||
|
</aside>
|
||||||
|
{{ end }}
|
||||||
|
@ -5,9 +5,11 @@
|
|||||||
<h2>
|
<h2>
|
||||||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
<h5>{{ .Date.Format "January 2, 2006" }}</h5>
|
<h5>
|
||||||
|
<strong>{{ .Date.Format "January 2, 2006" }}</strong>
|
||||||
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
{{ .Summary }}
|
{{- .Summary -}}
|
||||||
{{ if .Truncated }}
|
{{ if .Truncated }}
|
||||||
<a href="{{ .Permalink }}">...</a>
|
<a href="{{ .Permalink }}">...</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<header>
|
<header>
|
||||||
<h1>{{ .Title }}</h1>
|
<h1>{{ .Title }}</h1>
|
||||||
<h5>{{ .Date.Format "January 2, 2006" }}</h5>
|
<h5>
|
||||||
|
<strong>{{ .Date.Format "January 2, 2006" }}</strong>
|
||||||
|
</h5>
|
||||||
</header>
|
</header>
|
||||||
<article class="markdown">
|
<article class="markdown">
|
||||||
{{- .Content -}}
|
{{- .Content -}}
|
||||||
|
Loading…
Reference in New Issue
Block a user