Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fuxieorg/hugo-theme-shiro
A Content-focused theme for Hugo.
https://github.com/fuxieorg/hugo-theme-shiro
golang hugo hugo-theme
Last synced: about 2 months ago
JSON representation
A Content-focused theme for Hugo.
- Host: GitHub
- URL: https://github.com/fuxieorg/hugo-theme-shiro
- Owner: fuxieorg
- License: mit
- Created: 2024-03-01T14:26:31.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-03T05:13:06.000Z (10 months ago)
- Last Synced: 2024-10-12T22:22:28.977Z (3 months ago)
- Topics: golang, hugo, hugo-theme
- Language: HTML
- Homepage: https://hugo-theme-shiro.fuxie.org
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shiro
A Content-focused theme for Hugo.
## Features
- No JS, just HTML and tiny CSS
- No NPM dependencies## Installation
Clone the theme into the themes directory, adding it to your project as a Git submodule:
```sh
cd your_hugo_project
git submodule add [email protected]:fuxieorg/hugo-theme-shiro.git themes/shiro
```Append the following line to `hugo.toml` file, indicating the current theme:
```toml
# ...
theme = "shiro"
# ...
```Start Hugo’s development server to view the site:
```sh
hugo server
```## Update
To update the theme, pull the latest changes from the repository by navigating to your Hugo project's root directory and running:
```sh
cd your_hugo_project
git submodule update --remote --merge
```