diff --git a/.gitignore b/.gitignore
index dbe9c82..b5ca24c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-.vscode/
\ No newline at end of file
+/.hugo_build.lock
+/public
\ No newline at end of file
diff --git a/README.md b/README.md
index dbc4ae0..d526052 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,17 @@
-
# Oliver's Hugo Theme
+
Fork of [lugo](https://github.com/LukeSmithxyz/lugo). Used for my personal website(s).
-## get started
+## Get started
```sh
hugo new site new-site
-cd new-site
-git clone https://github.com/lukesmithxyz/lugo themes/lugo
+cd new-site/
+git submodule add https://git.oliveratkinson.net/Oliver/lugo themes/lugo
echo "theme = 'lugo'" >> config.toml
-cp themes/lugo/static/style.css static/
```
-## stuff
+## Notes
- Makes one RSS feed for the entire site at `/index.xml`
- Stylesheet is in `/style.css` and includes some important stuff for partials.
-- If a post is tagged, links to the tags are placed at the bottom of the post.
-- `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.
diff --git a/config.toml b/config.toml
index 9df13eb..90fc49e 100644
--- a/config.toml
+++ b/config.toml
@@ -6,6 +6,12 @@ languageCode = 'en-us'
# "relatedtext" is the text that appears above the tag list at the bottom of pages.
relatedtext = "Tags:"
favicon = "favicon.ico"
- showrss = true
+
+ #list items
+ datesinlist = true
+ authorsinlist = true
+
+ #footer items
nextprev = true
taglist = true
+ showrss = true
\ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 88db6f8..bfdb78a 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,47 +1,24 @@
-
- {{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}
-
-
-
-
-
- {{ with .Site.Params.favicon }}
- {{ end -}}
-
- {{ if isset .Params "tags" }}
- {{ end -}}
-
-
-
-
+{{ partial "head.html" . }}
-{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
-
-
-
- {{ if .IsHome }} {{ .Site.Title }} {{ end }}
- {{ block "title" . }}
- {{ end }}
-
- {{ if not .IsHome }} {{ .Params.description }} {{ end }}
-
-
-
-{{ block "main" . }}
-{{ .Content }}
-{{ end }}
-{{ if not .IsHome }} {{end -}}
-{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
-{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
-
-
-{{ block "footer" . }}
-
-{{ end }}
+ {{ block "header" . }}
+ {{ partial "header.html" . }}
+ {{ end }}
+
+