Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```