Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lkummer/monochrome
Minimalistic Hugo theme for blogging.
https://github.com/lkummer/monochrome
blog hugo hugo-theme jamstack static-site-generator
Last synced: 23 days ago
JSON representation
Minimalistic Hugo theme for blogging.
- Host: GitHub
- URL: https://github.com/lkummer/monochrome
- Owner: LKummer
- Created: 2020-10-11T12:00:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T10:58:01.000Z (over 4 years ago)
- Last Synced: 2024-11-18T11:26:10.495Z (3 months ago)
- Topics: blog, hugo, hugo-theme, jamstack, static-site-generator
- Language: SCSS
- Homepage: https://lkummer.github.io/Monochrome/
- Size: 1.36 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
![]()
# Monochrome Hugo Theme
Minimalistic blog theme for Hugo.
[See the documentation for more information](https://lkummer.github.io/Monochrome/).
## Development Guide
After cloning the project, install the required dependencies:
```s
$ yarn install
```Quick summary of the development scripts:
- `build` - Build the Hugo theme, demo and documentation sites for production.
Linting the sources in the process. Built artifacts are placed in the `dist`
folder.
- `build:theme:debug` - Build the Hugo theme unminified with source maps.
- `dev` - Run the demo site development server.
- `dev:doc` - Run the documentation site development server.
- `lint` - Lint all files with ESLint, Stylelint and Prettier.
- `format` - Format all files with ESLint, Stylelint and Prettier.The scripts can be invoked using `yarn run`:
```s
$ yarn run
```For example, if we want to build the theme we can use the `build` script:
```s
$ yarn run build
```