hugo-book/README.md

209 lines
6.5 KiB
Markdown
Raw Normal View History

2018-09-13 16:07:55 +00:00
# Hugo Book Theme
2018-12-19 21:46:48 +00:00
[![Build Status](https://travis-ci.org/alex-shpak/hugo-book.svg?branch=master)](https://travis-ci.org/alex-shpak/hugo-book)
2018-09-17 13:09:51 +00:00
### [Hugo](https://gohugo.io) documentation theme as simple as plain book
2018-09-13 16:07:55 +00:00
2018-10-30 15:37:38 +00:00
![Screenshot](https://github.com/alex-shpak/hugo-book/blob/master/images/screenshot.png)
2018-09-13 16:07:55 +00:00
## Features
- Clean simple design
- Mobile friendly
- Customisable
- Designed to not interfere with other layouts
- Zero initial configuration
## Requirements
2018-09-17 13:33:04 +00:00
- Hugo 0.48 or higher
- Hugo extended version, read more [here](https://gohugo.io/news/0.43-relnotes/)
2018-09-13 16:07:55 +00:00
## Installation
Navigate to your hugo project root and run:
2018-09-13 16:07:55 +00:00
```
2018-11-08 15:03:48 +00:00
git submodule add https://github.com/alex-shpak/hugo-book themes/book
2018-09-13 16:07:55 +00:00
```
2018-09-17 13:09:51 +00:00
Then run hugo (or set `theme: book` in configuration file)
2018-09-17 13:09:51 +00:00
```
hugo server --minify --theme book
2018-09-17 13:09:51 +00:00
```
2018-09-13 16:07:55 +00:00
### Creating site from scratch
Below is example how to create new site from scratch
```sh
hugo new site mydocs; cd mydocs
git init
git submodule add https://github.com/alex-shpak/hugo-book themes/book
cp -R themes/book/exampleSite/content .
```
```sh
hugo server --minify --theme book
```
2018-09-17 13:33:04 +00:00
## Menu
2018-09-17 13:09:51 +00:00
### File tree menu (default)
2018-09-17 13:09:51 +00:00
By default theme will render pages from `content/docs` section as menu in a tree structure.
You can set `title` and `weight` in front matter of pages to adjust order and titles in menu.
2018-09-13 16:07:55 +00:00
2018-09-17 13:09:51 +00:00
### Leaf bundle menu
You can also use leaf bundle and content of it's `index.md` as
2018-09-17 13:33:04 +00:00
menu.
Given you have this file structure
2018-09-17 13:33:04 +00:00
```
├── content
│ ├── docs
│ │ ├── page-one.md
│ │ └── page-two.md
│ └── posts
│ ├── post-one.md
│ └── post-two.md
2018-09-17 13:33:04 +00:00
```
Create file `content/docs/menu/index.md` with content
2018-09-17 13:33:04 +00:00
```md
+++
headless = true
+++
2018-09-17 23:35:54 +00:00
2018-09-17 13:33:04 +00:00
- [Book Example](/docs/)
- [Page One](/docs/page-one)
- [Page Two](/docs/page-two)
- [Blog](/posts)
2018-09-17 13:33:04 +00:00
```
And Enable it by settings `BookMenuBundle: /menu` in Site configuration
2018-09-17 13:33:04 +00:00
2018-10-31 12:12:01 +00:00
- [Example menu](https://github.com/alex-shpak/hugo-book/blob/master/exampleSite/content/menu/index.md)
- [Example config file](https://github.com/alex-shpak/hugo-book/blob/master/exampleSite/config.yaml)
2018-09-17 13:09:51 +00:00
- [Leaf bundles](https://gohugo.io/content-management/page-bundles/)
2018-09-13 16:07:55 +00:00
## Blog
2018-09-13 16:07:55 +00:00
Simple blog supported for section `posts`
2018-09-17 13:33:04 +00:00
## Configuration
2018-09-17 13:33:04 +00:00
### Site Configuration
There are few configuration options you can add to your `config.toml` file.
You can also see `yaml` example [here](https://github.com/alex-shpak/hugo-book/blob/master/exampleSite/config.yaml).
```toml
2019-05-01 00:10:42 +00:00
# (Optional) Set this to true if you use capital letters in file names
disablePathToLower = true
2018-09-13 16:07:55 +00:00
# (Optional) Set this to true to enable 'Last Modified by' date and git author
# information on 'doc' type pages.
enableGitInfo = true
# (Optional) Theme is intended for documentation use, therefore it doesn't render taxonomy.
# You can remove related files with config below
disableKinds = ['taxonomy', 'taxonomyTerm']
[params]
# (Optional, default true) Show or hide table of contents globally
# You can also specify this parameter per page in front matter
BookShowToC = true
2018-09-13 16:07:55 +00:00
# (Optional, default none) Set leaf bundle to render as side menu
# When not specified file structure and weights will be used
BookMenuBundle = '/menu'
2018-09-13 16:07:55 +00:00
# (Optional, default docs) Specify section of content to render as menu
# You can also set value to "*" to render all sections to menu
BookSection = 'docs'
# (Optional) This value is duplicate of $link-color for making active link highlight in menu bundle mode
# BookMenuBundleActiveLinkColor = '\#004ed0'
2019-02-19 23:27:25 +00:00
# (Optional, default false) Include JS scripts in pages. Disabled by default.
# - Keep side menu on same scroll position during navigation
BookEnableJS = true
2019-02-19 23:27:25 +00:00
# Set source repository location.
# Used for 'Last Modified' and 'Edit this page' links.
BookRepo = 'https://github.com/alex-shpak/hugo-book'
# Enable 'Edit this page' links for 'doc' page type.
# Disabled by default. Uncomment to enable. Requires 'BookRepo' param.
# Path must point to 'content' directory of repo.
BookEditPath = 'edit/master/exampleSite/content'
# (Optional, default January 2, 2006) Configure the date format used on the pages
# - In git information
# - In blog posts
BookDateFormat = 'Jan 2, 2006'
2018-09-13 16:07:55 +00:00
```
2018-09-17 13:33:04 +00:00
### Page Configuration
2018-09-17 13:33:04 +00:00
You can specify additional params per page in front matter
```toml
2018-09-17 13:33:04 +00:00
# Set type to 'docs' if you want to render page outside of configured section or if you render section other than 'docs'
type = 'docs'
2018-09-13 16:07:55 +00:00
# Set page weight to re-arrange items in file-tree menu (if BookMenuBundle not set)
weight = 10
2018-09-13 16:07:55 +00:00
2018-09-27 23:12:07 +00:00
# (Optional) Set to mark page as flat section in file-tree menu (if BookMenuBundle not set)
bookFlatSection = true
2018-09-13 16:07:55 +00:00
# (Optional) Set true to hide page or section from side menu (if BookMenuBundle not set)
bookHidden = true
# (Optional) Set true to hide table of contents, overrides global value
bookShowToC = false
```
2018-09-17 13:09:51 +00:00
### Partials
2018-09-17 13:19:18 +00:00
There are few empty partials you can override in `layouts/partials/`
2018-09-17 13:09:51 +00:00
| Partial | Placement |
| ----------------------------------------------- | -------------------------------------- |
| `layouts/partials/docs/inject/head.html` | Before closing `<head>` tag |
| `layouts/partials/docs/inject/body.html` | Before closing `<body>` tag |
| `layouts/partials/docs/inject/footer.html` | After page content |
| `layouts/partials/docs/inject/menu-before.html` | At the beginning of `<nav>` menu block |
| `layouts/partials/docs/inject/menu-after.html` | At the end of `<nav>` menu block |
2018-09-17 13:09:51 +00:00
### Extra Customisation
| File | Description |
| --------------------- | ------------------------------------------------------------------------------------- |
| `static/favicon.png` | Override default favicon |
| `assets/_custom.scss` | Customise or override scss styles |
| `assets/_fonts.scss` | Replace default font with custom fonts (e.g. local files or remote like google fonts) |
2018-09-17 13:09:51 +00:00
## Contributing
2019-04-23 20:30:24 +00:00
### [Extra credits to contributors](https://github.com/alex-shpak/hugo-book/graphs/contributors)
2019-04-09 21:04:52 +00:00
2018-09-17 13:09:51 +00:00
Contributions are welcome and I will review and consider pull requests.
Primary goals are:
- Keep it simple
- Keep minimal (or zero) default configuration
- Avoid interference with user-defined layouts
2018-09-13 16:07:55 +00:00
Feel free to open issue if you missing some configuration or customisation option.
2018-09-13 16:07:55 +00:00
## License
2018-10-31 12:12:01 +00:00
[MIT](LICENSE)