24 lines
523 B
Markdown
24 lines
523 B
Markdown
+++
|
|
title = "Install"
|
|
summary = "Clone the repo and run Hugo."
|
|
weight = 2
|
|
+++
|
|
|
|
If you're new to hugo, you can just clone and update the `contents` folder.
|
|
|
|
```sh
|
|
git clone https://github.com/ruinivist/hugo-starless my-blog-name
|
|
cd my-blog-name
|
|
hugo server
|
|
```
|
|
|
|
If you already have a Hugo site and just want the theme
|
|
|
|
```sh
|
|
cd my-existing-site
|
|
git clone https://github.com/ruinivist/hugo-starless /tmp/hugo-starless
|
|
cp -r /tmp/hugo-starless/themes/starless ./themes/
|
|
# in hugo.toml, set: theme = "starless"
|
|
hugo server
|
|
```
|