diff --git a/content/_index.md b/content/_index.md index 5466a55..83146c7 100644 --- a/content/_index.md +++ b/content/_index.md @@ -4,7 +4,6 @@ cardImage: charolette cardImageDescription: She almost looks like she's in her native country again. motto: My name is Thomas Christensen
I am Milliron X description: The homepage of Thomas A. Christensen II -layout: _default/list menu: main: params: diff --git a/layouts/_default/index.html b/layouts/_default/index.html new file mode 100644 index 0000000..8ebdafd --- /dev/null +++ b/layouts/_default/index.html @@ -0,0 +1,21 @@ +{{ define "extraCss" }} + {{ $scrollCss := resources.Get "styles/scrolling-header.css" | minify }} + +{{ end }} + +{{ define "main" }} + {{ partial "scrolling-image-header" . }} +
+
+ {{ block "content" . }} + {{ .Content }} + {{ end }} +
+ +

Recent activity

+ {{ $pageinator := .Paginate .Site.RegularPages }} + {{ range $pageinator.Pages }} + {{ partial "itemcard.html" . }} + {{ end }} +
+{{ end }}