commit ee0ab66d736b07ff4838594f4c76a194d5a11eff Author: Brandon Rozek Date: Wed Jan 15 21:49:05 2020 -0500 Initial custom site config diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73ab876 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +public/ +resources/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..8965153 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/pulp"] + path = themes/pulp + url = https://github.com/koirand/pulp.git diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..5db7366 --- /dev/null +++ b/config.toml @@ -0,0 +1,90 @@ +baseURL = "https://brandonrozek.com/" +languageCode = "en-us" +title = "Brandon Rozek" +author = "Brandon Rozek" +description = "Software Developer, Researcher, and Linux Enthusiast." +theme = "pulp" + +[taxonomies] + series = "series" + +[params] + author = "Brandon Rozek" + avatar = "avatar.jpg" + favicon = "favicon.ico" + description = """ + Software Developer, Researcher, and Linux Enthusiast. + """ + publicationYear = "2019" + # listPageDateFormat = "January, 2006" # See https://gohugo.io/functions/format/ + # singlePageDateFormat = "January 2, 2006" + # custom_css = ["/css/custom.css"] + # custom_js = ["/js/custom.js"] + +[outputs] + section = ["JSON", "HTML", "RSS"] + page = ["AMP", "HTML"] + +[[menu.main]] + identifier = "blog" + name = "Blog" #If display text link, cancel comment out + pre = "" #Choose your favorite font from Font Awesome + url = "/blog/" + weight = 10 + +[[menu.main]] + identifier = "community" + name = "Community" + pre = "" + url = "/community/" + weight = 30 + +[[menu.main]] + identifier = "research" + name = "Research" + pre = "" + url = "/research/" + weight = 20 + +[[menu.main]] + identifier = "Presentations" + name = "Presentations" + pre = "" + url = "/presentations/" + weight = 40 + +[[menu.main]] + identifier = "projects" + name = "Projects (old)" + pre = "" + url = "/projects/" + weight = 70 + +[[menu.main]] + identifier = "notes" + name = "Notes" + pre = "" + url = "/notes/" + weight = 60 + +[[menu.main]] + identifier = "ta" + name = "TA" + pre = "" + url = "/ta/" + weight = 50 + + +[[menu.main]] + identifier = "github" + name = "GitHub" + pre = "" + url = "https://github.com/brandon-rozek" + weight = 80 + +[[menu.main]] + identifier = "email" + name = "Email" + pre = "" + url = "mailto:hello@brandonrozek.com" + weight = 90 diff --git a/sync.sh b/sync.sh new file mode 100755 index 0000000..c3bb67c --- /dev/null +++ b/sync.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh +hugo +rsync -Paz --delete public/ brandonrozek.com:brandonrozek diff --git a/themes/pulp b/themes/pulp new file mode 160000 index 0000000..997422c --- /dev/null +++ b/themes/pulp @@ -0,0 +1 @@ +Subproject commit 997422cd16e61023a124dcfde8202199a5aca551