https://github.com/schalkneethling/hugo-skeleton
A post Hugo install collection of base HTML and SASS
https://github.com/schalkneethling/hugo-skeleton
Last synced: 3 months ago
JSON representation
A post Hugo install collection of base HTML and SASS
- Host: GitHub
- URL: https://github.com/schalkneethling/hugo-skeleton
- Owner: schalkneethling
- License: mit
- Archived: true
- Created: 2020-04-28T08:38:36.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T12:42:58.000Z (about 1 year ago)
- Last Synced: 2024-11-16T07:46:45.673Z (8 months ago)
- Language: SCSS
- Size: 363 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# hugo-skeleton
A post-Hugo install collection of base HTML, SASS, and static assets
https://user-images.githubusercontent.com/10350960/144745031-f1fd209b-9331-42d5-91ac-a4698058ceae.mp4
## Prerequisites
- [Nodejs](https://nodejs.org/)
- [Hugo](https://gohugo.io/getting-started/installing)On macOS you can do this with [Homebrew](https://brew.sh/):
```bash
brew install hugo
```## Using hugo-skeleton
Create a new site with Hugo:
```bash
hugo new site my-site
```Change directory into your new site:
```bash
cd my-site
```Run `hugo-skeleton`:
```bash
npx @project-calavera/hugo-skeleton --output=.
```The above will write the `hugo-skeleton` files into the current directory.
Run `hugo server` and you are on your way.