diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7badf8f5..cca6ae55 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,8 @@ image: node:alpine before_script: - apk update && apk add openssl - - wget https://github.com/gohugoio/hugo/releases/download/v0.40.3/hugo_0.40.3_Linux-64bit.tar.gz - - tar xf hugo_0.40.3_Linux-64bit.tar.gz && cp ./hugo /usr/bin + - wget https://github.com/gohugoio/hugo/releases/download/v0.46/hugo_0.46_Linux-64bit.tar.gz + - tar xf hugo_0.46_Linux-64bit.tar.gz && cp ./hugo /usr/bin - npm install --quiet firebase-tools -g deploy: diff --git a/config.toml b/config.toml index c22b3df0..32e06bd4 100644 --- a/config.toml +++ b/config.toml @@ -2,6 +2,8 @@ baseURL = "https://jarv.is/" languageCode = "en-us" title = "Jake Jarvis" +disableHugoGeneratorInject = true + disableKinds = ["taxonomy", "taxonomyTerm", "sitemap", "RSS"] [taxonomies] diff --git a/layouts/index.html b/layouts/index.html index 20f586d0..bf76d59a 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,5 +1,5 @@ {{ define "main" }} -
+
Jake Jarvis

Hello! I'm Jake. 👋

I'm a web and mobile developer based in Boston.

diff --git a/layouts/notes/baseof.html b/layouts/notes/baseof.html new file mode 100644 index 00000000..ea0df1e3 --- /dev/null +++ b/layouts/notes/baseof.html @@ -0,0 +1,4 @@ +{{ partial "header.html" . }} +{{ block "main" . }}{{ end }} +bananan +{{ partial "footer.html" . }} \ No newline at end of file diff --git a/layouts/notes/list.html b/layouts/notes/list.html new file mode 100644 index 00000000..861da0a4 --- /dev/null +++ b/layouts/notes/list.html @@ -0,0 +1,3 @@ +{{ define "main" }} +{{ .Content }}asdf +{{ end }} \ No newline at end of file diff --git a/layouts/partials/header.html b/layouts/partials/header.html index b3da0d06..4a8dbbdd 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -3,14 +3,16 @@ + {{ .Hugo.Generator }} {{ .Title }} - + + - + @@ -18,7 +20,7 @@ - + diff --git a/static/style.css b/static/style.css index ff22b5f6..5e223c8c 100644 --- a/static/style.css +++ b/static/style.css @@ -206,7 +206,7 @@ body { line-height: 1.5; } -div#container { +div#home { display: table-cell; vertical-align: middle; width: 100%; @@ -233,22 +233,22 @@ a { -o-transition: border-color 0.2s linear; } -h1 { +div#home h1 { margin: 0 0 20px 0; font-size: 150%; line-height: 1; } -h2 { +div#home h2 { margin: 20px 0; font-size: 120%; } -p { +div#home p { margin: 20px 0; } -sup { +div#home sup { vertical-align: middle; font-size: 50%; } @@ -258,7 +258,7 @@ sup { font-size: 18px; } - img#me { + div#home img#me { width: 80px; height: 80px; }