diff --git a/config/_default/config.toml b/config/_default/config.toml index e27b394..110cbda 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -18,104 +18,7 @@ pygmentsCodeFences = true pygmentsCodefencesGuessSyntax = true pygmentsUseClasses = true -[params] -author = "Carl Pearson" -title = "Carl Pearson" -# copyright = "2020-2021" -description = "Postdoctoral Appointee, Sandia National Labs and Research Assistant Professor (LAT), University of New Mexico CS. All opinions are my own." -favicon = "favicons/" -keywords = "" -profilePicture = "img/avatar.jpg" -# example ["css/custom.css"] -# added css/syntax.css after hugo gen chromastyles --style=mannai > assets/css/syntax.css -customCss = ["css/custom.css", "css/syntax.css"] -# customCss = [] -# example ["js/custom.js"] -customJs = [] -doNotLoadAnimations = true -images = ["img/bubbles.jpg"] -mainSections = ["publication"] -# Form Spree Contact Form -#contactFormAction = "https://formspree.io/f/your-form-hash-here" -# Google Site Verify -#googleSiteVerify = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -# indexDateFormat = "Mon, Jan 2, 2006" -# listDateFormat = "Jan 2" -# singleDateFormat = "Mon, Jan 2, 2006" - -[params.simpleAnalytics] -# enable = true -# customurl = "https://analytics.example.com" - -## Math settings -[params.math] -enable = false # options: true, false. Enable math support globally, default: false. You can always enable math on per page. -use = "katex" # options: "katex", "mathjax". default is "katex". - -## Social links -# use 'fab' when brand icons, use 'fas' when standard solid icons. -[[params.socialIcons]] -icon = "fab fa-linkedin" -title = "Linkedin" -url = "https://www.linkedin.com/in/cwpearson/" - -[[params.socialIcons]] -icon = "fab fa-github" -title = "GitHub" -url = "https://github.com/cwpearson" - -[[params.socialIcons]] -icon = "fas fa-envelope" -title = "e-mail" -url = "mailto:cwpears@sandia.gov" - -[[params.socialIcons]] -icon = "fas fa-university" -title = "Google Scholar" -url = "https://scholar.google.com/citations?user=K2nzqpYAAAAJ&hl=en" - -## Menu items - -[menu] - -[[menu.main]] -identifier = "home" -name = "Home" -url = "/" -weight = 100 - -[[menu.main]] -identifier = "publications" -name = "Publications" -url = "/publication/" -weight = 300 - -[[menu.main]] -identifier = "projects" -name = "Projects" -url = "/project/" -weight = 400 - -[[menu.main]] -identifier = "awards" -name = "Recognition" -url = "/awards/" -weight = 500 - -[[menu.main]] -identifier = "experience" -name = "Experience" -url = "/experience/" -weight = 600 - -[[menu.main]] -identifier = "talks" -name = "Talks" -url = "/talk/" -weight = 700 - -[[menu.main]] -identifier = "posts" -name = "Posts" -url = "/post/" -weight = 800 +[markup] +[markup.goldmark] +[markup.goldmark.renderer] +unsafe = true diff --git a/config/_default/menus.en.toml b/config/_default/menus.en.toml new file mode 100644 index 0000000..a3ce6a4 --- /dev/null +++ b/config/_default/menus.en.toml @@ -0,0 +1,41 @@ +[[main]] +identifier = "home" +name = "Home" +url = "/" +weight = 100 + +[[main]] +identifier = "publications" +name = "Publications" +url = "/publication/" +weight = 300 + +[[main]] +identifier = "projects" +name = "Projects" +url = "/project/" +weight = 400 + +[[main]] +identifier = "awards" +name = "Recognition" +url = "/awards/" +weight = 500 + +[[main]] +identifier = "experience" +name = "Experience" +url = "/experience/" +weight = 600 + +[[main]] +identifier = "talks" +name = "Talks" +url = "/talk/" +weight = 700 + +[[main]] +identifier = "posts" +name = "Posts" +url = "/post/" +weight = 800 diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..9f50ae3 --- /dev/null +++ b/config/_default/params.toml @@ -0,0 +1,59 @@ + +author = "Carl Pearson" +title = "Carl Pearson" +#copyright = "2020-2021" +description = "Postdoctoral Appointee, Sandia National Labs and Research Assistant Professor (LAT), University of New Mexico CS. All opinions are my own." +favicon = "favicons/" +keywords = "" +profilePicture = "img/avatar.png" +# example ["css/custom.css"] +# added css/syntax.css after hugo gen chromastyles --style=mannai > assets/css/syntax.css +customCss = ["css/custom.css", "css/syntax.css"] +# example ["js/custom.js"] +customJs = [] +doNotLoadAnimations = true +images = ["images/site-feature-image.png"] +mainSections = ["post"] +# Form Spree Contact Form +#contactFormAction = "https://formspree.io/f/your-form-hash-here" +# Google Site Verify +#googleSiteVerify = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +indexDateFormat = "2/1/2006" +listDateFormat = "2/1/2006" +singleDateFormat = "2/1/2006" +# Commento Comments +# CommentoURL = "https://commento.example.com/js/commento.js" +# Read More links for truncated summaries +# readMore = true +# postSectionName = "blog" + +[simpleAnalytics] +# enable = true +# customurl = "https://analytics.example.com" + +## Math settings +[math] +enable = false # options: true, false. Enable math support globally, default: false. You can always enable math on per page. +use = "katex" # options: "katex", "mathjax". default is "katex". + +## Social links +# use 'fab' when brand icons, use 'fas' when standard solid icons. +[[socialIcons]] +icon = "fab fa-linkedin" +title = "Linkedin" +url = "https://www.linkedin.com/in/cwpearson/" + +[[socialIcons]] +icon = "fab fa-github" +title = "GitHub" +url = "https://github.com/cwpearson" + +[[socialIcons]] +icon = "fas fa-envelope" +title = "e-mail" +url = "mailto:cwpears@sandia.gov" + +[[socialIcons]] +icon = "fas fa-university" +title = "Google Scholar" +url = "https://scholar.google.com/citations?user=K2nzqpYAAAAJ&hl=en" diff --git a/static/img/avatar.png b/static/img/avatar.png new file mode 100644 index 0000000..b2b0d1e Binary files /dev/null and b/static/img/avatar.png differ diff --git a/themes/anatole b/themes/anatole index 36d0d19..5303fca 160000 --- a/themes/anatole +++ b/themes/anatole @@ -1 +1 @@ -Subproject commit 36d0d1963bcebd750b5271910bc66712110124b5 +Subproject commit 5303fca371473037c783c6c45d778e5fd8be6bf4