Fill theme.toml, refactor injection partials

soper-book
Alex Shpak 2018-09-12 14:21:46 +02:00
parent 2e5e2a2f5c
commit ca37d7488c
18 changed files with 35 additions and 42 deletions

View File

@ -1,2 +0,0 @@
+++
+++

4
archetypes/docs.md Normal file
View File

@ -0,0 +1,4 @@
---
title: "{{ .Name | humanize | title }}"
weight: 1
---

View File

@ -1,25 +1,26 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "book/html-head" . }}
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
<title>{{ block "title" . }} {{- .Site.Title -}} {{ end }}</title>
</head>
<body>
<div class="pure-g">
<div class="pure-u book-nav">
{{ partial "book/nav" . }}
{{ partial "docs/nav" . }}
</div>
<div class="pure-u book-content">
<div class="pure-g">
<div class="pure-u book-page markdown">
{{ block "main" . }}{{ end }}
{{ block "main" . }} {{- .Content -}} {{ end }}
</div>
{{ if and (default true .Site.Params.BookShowTOC) (.Page.TableOfContents) }}
<div class="pure-u book-toc">
{{ partial "book/toc" . }}
{{ partial "docs/toc" . }}
</div>
{{ end }}
@ -27,5 +28,6 @@
</div>
</div>
{{ partial "docs/inject/body" . }}
</body>
</html>

View File

@ -1,7 +1 @@
{{- define "title" -}}
{{ .Site.Title }}
{{ end }}
{{- define "main" -}}
<div>{{ .Content }}</div>
{{ end }}
{{ define "." }} {{ end }}

View File

@ -1,7 +1 @@
{{- define "title" -}}
{{ .Site.Title }}
{{ end }}
{{- define "main" -}}
<div>{{ .Content }}</div>
{{ end }}
{{ define "." }} {{ end }}

View File

@ -1,5 +0,0 @@
<nav role="navigation">
{{ partial "book/nav-brand" . }}
{{ with .Site.GetPage .Site.Params.BookMenuBundle }}{{ .Content }}{{ end }}
{{ partial "book/nav-after" . }}
</nav>

View File

@ -1,5 +0,0 @@
{{ if .Site.Params.BookMenuBundle }}
{{ partial "book/nav-bundle" . }}
{{ else }}
{{ partial "book/nav-tree" . }}
{{ end }}

View File

@ -6,6 +6,4 @@
<!-- <link href="/css/grids-responsive-min.css" rel="stylesheet"> -->
{{ $styles := resources.Get "styles.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $styles.Permalink }}">
{{ partial "book/html-head-after" . }}
<link rel="stylesheet" href="{{ $styles.Permalink }}">

View File

@ -0,0 +1,8 @@
<nav role="navigation">
{{ partial "docs/nav-brand" . }}
{{ partial "docs/inject/nav-before" . }}
{{ with .Site.GetPage .Site.Params.BookMenuBundle }}
{{- .Content -}}
{{ end }}
{{ partial "docs/inject/nav-after" . }}
</nav>

View File

@ -13,8 +13,8 @@
{{ end }}
<nav role="navigation">
{{ partial "book/nav-brand" . }}
{{ partial "book/nav-before" . }}
{{ partial "docs/nav-brand" . }}
{{ partial "docs/inject/nav-before" . }}
<ul>
{{ range .Scratch.Get "BookSections" }}
@ -22,7 +22,7 @@
{{ end }}
</ul>
{{ partial "book/nav-after" . }}
{{ partial "docs/inject/nav-after" . }}
</nav>
<!-- Single section of menu (recursive) -->

View File

@ -0,0 +1,5 @@
{{ if .Site.Params.BookMenuBundle }}
{{ partial "docs/nav-bundle" . }}
{{ else }}
{{ partial "docs/nav-tree" . }}
{{ end }}

View File

@ -3,13 +3,13 @@
name = "Book"
license = "MIT"
licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE"
description = ""
homepage = "http://example.com/"
tags = []
licenselink = "https://github.com/alex-shpak/hugo-book/blob/master/LICENSE"
description = "Hugo documentation theme as simple as plain book"
homepage = "https://github.com/alex-shpak/hugo-book"
tags = ["responsive", "clean", "documentation", "docs", "flexbox"]
features = []
min_version = "0.41"
[author]
name = "Alex Shpak"
homepage = ""
homepage = "https://github.com/alex-shpak/"