commit 0784507fb22a6fe62528400c24fb76c3610033a3 parent 930c7fc421b06e7a75d01db23c5f819b32167af6 Author: Luke Smith <luke@lukesmith.xyz> Date: Mon, 11 Jul 2022 16:15:58 -0400 lol Diffstat:
| M | README.md | | | 9 | +++++++++ |
| D | layouts/index.html | | | 6 | ------ |
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md @@ -2,6 +2,15 @@ A simple Hugo theme I plan on using for my personal website, [Based.Cooking](https://based.cooking) and [LandChad.net](https://landchad.net). +## 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/ +``` ## stuff diff --git a/layouts/index.html b/layouts/index.html @@ -1,6 +0,0 @@ -{{ partial "header.html" . -}} -<header><h1>{{ if .Title }}{{ .Title }}{{ else }}{{ .Site.Title }}{{ end }}</h1></header> -<article> -{{ .Content }} -</article> -{{ partial "footer.html" . }}