Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sammy-t/hugo-ing

A simple Hugo starter for building websites using Hugo Pipes for CSS and JavaScript processing.
https://github.com/sammy-t/hugo-ing

hugo hugo-boilerplate hugo-starter jamstack static-site-generator

Last synced: 3 days ago
JSON representation

A simple Hugo starter for building websites using Hugo Pipes for CSS and JavaScript processing.

Awesome Lists containing this project

README

        

# Hugo-ing
A simple [Hugo](https://gohugo.io/) starter for building websites using Hugo Pipes for CSS and JavaScript processing.

![hugo-ing-screen](https://user-images.githubusercontent.com/22360092/116813804-b099b300-ab23-11eb-95d7-2ab28a1bc508.png)

## Getting Started
#### Install necessary packages:
```
npm install
```

#### Run the dev server:
```
npm start
```
Then navigate to `http://localhost:1313/` in your browser to view your dev server.

#### Build your website:
```
npm run build
```
#### Or build your website with draft content included:
```
npm run build:preview
```
**Built website files will be published to the `dist/` directory.**

## Structure
```
site/
|-- archetypes/ // Templates for content files
|-- assets/ // Files for processing with Hugo Pipes (CSS, JS, etc.)
|-- content/ // Page content
|-- data/
|-- layouts/ // HTML template files
|-- resources/
|-- static/ // Static files which will be copied into the publish directory
|-- themes/
|-- config.toml // Hugo configuration file
postcss.config.js // PostCSS configuration
```

## License
This project uses the [MIT](LICENSE) license.