mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
Initial custom site config
This commit is contained in:
commit
ee0ab66d73
5 changed files with 99 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
public/
|
||||
resources/
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/pulp"]
|
||||
path = themes/pulp
|
||||
url = https://github.com/koirand/pulp.git
|
90
config.toml
Normal file
90
config.toml
Normal file
|
@ -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 = "<i class='fa fa-book-open fa-lg'></i>" #Choose your favorite font from Font Awesome
|
||||
url = "/blog/"
|
||||
weight = 10
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "community"
|
||||
name = "Community"
|
||||
pre = "<i class='fa fa-user-friends fa-lg'></i>"
|
||||
url = "/community/"
|
||||
weight = 30
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "research"
|
||||
name = "Research"
|
||||
pre = "<i class='fa fa-flask fa-lg'></i>"
|
||||
url = "/research/"
|
||||
weight = 20
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Presentations"
|
||||
name = "Presentations"
|
||||
pre = "<i class='fa fa-comment fa-lg'></i>"
|
||||
url = "/presentations/"
|
||||
weight = 40
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "projects"
|
||||
name = "Projects (old)"
|
||||
pre = "<i class='fa fa-tasks fa-lg'></i>"
|
||||
url = "/projects/"
|
||||
weight = 70
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "notes"
|
||||
name = "Notes"
|
||||
pre = "<i class='fa fa-book-open fa-lg'></i>"
|
||||
url = "/notes/"
|
||||
weight = 60
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "ta"
|
||||
name = "TA"
|
||||
pre = "<i class='fa fa-chalkboard-teacher fa-lg'></i>"
|
||||
url = "/ta/"
|
||||
weight = 50
|
||||
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "github"
|
||||
name = "GitHub"
|
||||
pre = "<i class='fab fa-github fa-lg'></i>"
|
||||
url = "https://github.com/brandon-rozek"
|
||||
weight = 80
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "email"
|
||||
name = "Email"
|
||||
pre = "<i class='fa fa-envelope fa-lg'></i>"
|
||||
url = "mailto:hello@brandonrozek.com"
|
||||
weight = 90
|
3
sync.sh
Executable file
3
sync.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env sh
|
||||
hugo
|
||||
rsync -Paz --delete public/ brandonrozek.com:brandonrozek
|
1
themes/pulp
Submodule
1
themes/pulp
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 997422cd16e61023a124dcfde8202199a5aca551
|
Loading…
Reference in a new issue