Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/jsnjack/hugo-changelog-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ea097aeec430b3e37274fc865874ed59261dc04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Hugo Changelog Theme
=====

A [Hugo](https://gohugo.io/) theme to display changelog

# Features
 - Build with [Spectre.css](https://picturepan2.github.io/spectre/) (All unused components are disabled)
 - Pagination
 - Mobile friendly

# Conventions
 - Create non-released entries in `experimental` folder. All of them are displayed in the top of the first page
 - Create released entries in `released` folders. Entries are sorted by Weight. Weight is displayed as version

# Shortcodes
 - `{{% tag fixed %}}` - create a specific tag before entry text. Available tag types are: added, changed, fixed, deprecated, removed, security

# Settings
```
[params]
    customCSS = ["css/styles.css"]  # List of css files to include on the website. Reltive to the static/ folder
    disableOriginalStyles = true  # Do not include original CSS styles
```

# Development
## Serve example website
```bash
cd exampleSite && hugo serve --theme hugo-changelog-theme --themesDir ../../ --baseURL http://localhost/
```