Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/sammy-t/hugo-ing
- Owner: Sammy-T
- License: mit
- Created: 2021-04-30T19:09:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-02T17:29:31.000Z (13 days ago)
- Last Synced: 2024-11-02T18:26:14.549Z (13 days ago)
- Topics: hugo, hugo-boilerplate, hugo-starter, jamstack, static-site-generator
- Language: HTML
- Homepage:
- Size: 541 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.