2022-04-14 20:09:21 +00:00
|
|
|
# Luke's Hugo Theme
|
|
|
|
|
|
|
|
A simple Hugo theme I plan on using for my personal website, [Based.Cooking](https://based.cooking) and [LandChad.net](https://landchad.net).
|
2022-07-11 15:06:43 +00:00
|
|
|
|
2022-07-11 20:15:58 +00:00
|
|
|
## get started
|
|
|
|
|
|
|
|
```sh
|
|
|
|
hugo new site new-site
|
|
|
|
cd new-site
|
|
|
|
git clone https://github.com/lukesmithxyz/lugo themes/lugo
|
|
|
|
echo "theme = 'lugo'" >> config.toml
|
|
|
|
cp themes/lugo/static/style.css static/
|
|
|
|
```
|
2022-07-11 15:06:43 +00:00
|
|
|
|
|
|
|
## stuff
|
|
|
|
|
|
|
|
- Makes one RSS feed for the entire site at `/index.xml`
|
2022-07-11 20:37:17 +00:00
|
|
|
- Stylesheet is in `/style.css` and includes some important stuff for partials.
|
2022-07-11 15:06:43 +00:00
|
|
|
- If a post is tagged, links to the tags are placed at the bottom of the post.
|
2022-07-11 20:37:17 +00:00
|
|
|
- `nextprev.html` adds links to the Next and Previous articles to the bottom of a page.
|
|
|
|
- `taglist.html` links all tags an article is tagged to for related content.
|