Hugo 0.53, hugo-academic 3.3.0
This commit is contained in:
256
config.toml
256
config.toml
@@ -1,11 +1,20 @@
|
||||
# Configuration of Academic
|
||||
# Documentation: https://sourcethemes.com/academic/
|
||||
#
|
||||
# This file is formatted using TOML syntax - learn more at https://learnxinyminutes.com/docs/toml/
|
||||
# Each configuration section is defined by a name in square brackets (e.g. `[outputs]`).
|
||||
|
||||
# The URL of your website.
|
||||
# End your URL with a `/` trailing slash, e.g. `https://example.com/`.
|
||||
baseurl = "https://cwpearson.github.io/" # End your URL with a `/` trailing slash, e.g. `https://example.com/`.
|
||||
baseurl = "https://cwpearson.github.io/"
|
||||
|
||||
# Title of your site
|
||||
title = "Carl Pearson"
|
||||
|
||||
# Your copyright notice - appears in site footer.
|
||||
# To display a copyright symbol, type `©`.
|
||||
copyright = "© 2018 Carl Pearson"
|
||||
|
||||
theme = "academic"
|
||||
enableEmoji = true
|
||||
footnotereturnlinkcontents = "<sup>^</sup>"
|
||||
@@ -21,26 +30,27 @@ googleAnalytics = "UA-54975774-2"
|
||||
|
||||
# Default language to use (if you setup multilingual support)
|
||||
defaultContentLanguage = "en"
|
||||
hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean languages.
|
||||
defaultContentLanguageInSubdir = false
|
||||
|
||||
# Get last modified date for content from Git?
|
||||
enableGitInfo = false
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "CSS" ]
|
||||
home = [ "HTML", "CSS", "RSS", "JSON" ]
|
||||
section = [ "HTML", "RSS" ]
|
||||
|
||||
# Configure BlackFriday Markdown rendering.
|
||||
# See: https://gohugo.io/readfiles/bfconfig/
|
||||
# See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
|
||||
[blackfriday]
|
||||
hrefTargetBlank = true # `true` opens external links in a new tab.
|
||||
fractions = true # `false` disables smart fractions (e.g. 5/12 formatted as a fraction).
|
||||
smartypants = true # `false` disables all smart punctuation substitutions (e.g. smart quotes, dashes, fractions).
|
||||
smartypants = true # `false` disables all smart punctuation substitutions (e.g. smart quotes, dashes, fractions).
|
||||
extensions = ["backslashLineBreak"]
|
||||
|
||||
|
||||
[params]
|
||||
# Color theme.
|
||||
# Choose from `default`, `ocean`, `forest`, or `coffee`.
|
||||
color_theme = "default"
|
||||
|
||||
# Font style.
|
||||
# Choose from `default`, `classic`, or `playfair`.
|
||||
font = "default"
|
||||
# AUTHOR SETUP
|
||||
|
||||
# Your details.
|
||||
name = "Carl Pearson"
|
||||
@@ -50,41 +60,84 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
# Separate multiple entries with a comma, using the form: `[ {name="Org1", url=""}, {name="Org2", url=""} ]`.
|
||||
organizations = [ { name = "University of Illinois Urbana-Champaign", url = "http://www.ece.illinois.edu/" } ]
|
||||
|
||||
gravatar = false # Get your avatar from Gravatar.com? (true/false)
|
||||
avatar = "headshot.jpg"
|
||||
gravatar = false # Get your avatar from Gravatar.com? (true/false)
|
||||
avatar = "headshot.jpg" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar.
|
||||
|
||||
# Details for the Contact Widget
|
||||
email = "pearson@illinois.edu"
|
||||
address = "222 Coordinated Science Lab, 1308 W. Main St., Urbana, Illinois 61801"
|
||||
office_hours = "Face-to-face by appointment"
|
||||
office_hours = "email to book an appointment"
|
||||
phone = ""
|
||||
skype = ""
|
||||
telegram = ""
|
||||
keybase = "" # Your keybase.io username.
|
||||
|
||||
# Enable Keybase in Contact section by entering your keybase.io username.
|
||||
keybase = ""
|
||||
# Enter an optional link for booking appointments (e.g. calendly.com).
|
||||
appointment_url = ""
|
||||
|
||||
# Discussion link (e.g. link to a forum, mailing list, or chat).
|
||||
# Uncomment line below to use.
|
||||
# discussion = { name = "Discuss", url = "https://discourse.gohugo.io" }
|
||||
|
||||
# Enable/disable map in Contact widget.
|
||||
# To show your address on a map in the contact widget, you need to enter your latitude, longitude and choose
|
||||
# a map provider below.
|
||||
# To use Google Maps, set `map = 1` and enter your API key that can be obtained here:
|
||||
# https://developers.google.com/maps/documentation/javascript/get-api-key
|
||||
# To use OpenStreetMap tiles, set `map = 2`.
|
||||
# To use OpenStreetMap on a high traffic site, set `map = 3` and enter your API key that can be obtained here:
|
||||
# https://www.mapbox.com/studio/account/tokens
|
||||
# To get your coordinates, right-click on Google Maps and choose "What's here?". The coords will show up at the bottom.
|
||||
#
|
||||
# Map provider:
|
||||
# 0: No map
|
||||
# 1: Google Maps
|
||||
# 2: OpenStreetMap (Mapnik)
|
||||
# 3: OpenStreetMap (Mapbox)
|
||||
map = 0
|
||||
map_api_key = ""
|
||||
latitude = "40.114879"
|
||||
longitude = "-88.226713"
|
||||
zoom = 15
|
||||
|
||||
# SITE SETUP
|
||||
|
||||
# Color theme.
|
||||
# Choose from `default`, `ocean`, `forest`, `dark`, `apogee`, `1950s`, `coffee`, `cupcake`.
|
||||
color_theme = "default"
|
||||
# Enable users to switch between day and night mode?
|
||||
day_night = true
|
||||
|
||||
# Font style.
|
||||
# Choose from `default`, `classic`, or `playfair`.
|
||||
font = "default"
|
||||
|
||||
# Description for social sharing and search engines. If undefined, author role is used in place.
|
||||
description = ""
|
||||
|
||||
# Default image for social sharing and search engines. Place image in `static/img/` folder and specify image name here.
|
||||
sharing_image = ""
|
||||
|
||||
# Twitter username (without @). Used when a vistor shares your site on Twitter.
|
||||
twitter = ""
|
||||
|
||||
# Diplay a logo in navigation bar rather than title (optional).
|
||||
# To enable, place an image in `static/img/` and reference its filename below. To disable, set the value to "".
|
||||
logo = ""
|
||||
|
||||
# Enable Google Maps by entering your API key, latitude, and longitude.
|
||||
# Get your API key: https://developers.google.com/maps/documentation/javascript/get-api-key
|
||||
# Get your coords: Right-click place on Google Maps. Select 'What's here?'. At the bottom is a card with the coords.
|
||||
# Disable Google Maps by clearing all three options to "".
|
||||
google_maps_api_key = ""
|
||||
latitude = "40.114879"
|
||||
longitude = "-88.226713"
|
||||
|
||||
# Date format (refer to Go's date format: http://flippinggodateformat.com )
|
||||
# Date and time format (refer to https://sourcethemes.com/academic/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "Mon, Jan 2, 2006"
|
||||
# Examples: "3:04 pm" or "15:04"
|
||||
time_format = "3:04 PM"
|
||||
|
||||
# Show estimated reading time for posts?
|
||||
reading_time = true
|
||||
reading_time = false
|
||||
|
||||
# Display comment count? Requires commenting to be enabled.
|
||||
comment_count = true
|
||||
|
||||
# Display section pager for posts?
|
||||
# Display next/previous section pager?
|
||||
section_pager = false
|
||||
|
||||
# Enable global LaTeX math rendering?
|
||||
@@ -100,9 +153,7 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
#
|
||||
# highlight_languages
|
||||
# Add support for highlighting additional languages. Support for
|
||||
# languages mentioned here will be included in all pages. You
|
||||
# can also set this variable for a particular page in that
|
||||
# page's preamble.
|
||||
# languages mentioned here will be included in all pages.
|
||||
#
|
||||
# Example: highlight_languages = ["go", "lisp", "ocaml"]
|
||||
#
|
||||
@@ -113,24 +164,22 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
#
|
||||
# Example: highlight_style = "github-gist"
|
||||
#
|
||||
# highlight_version
|
||||
# Choose the version of highlight.js you want. Setting this
|
||||
# option in a page's preamble has no effect.
|
||||
#
|
||||
# Example: highlight_version = "9.9.0"
|
||||
#
|
||||
# For the list of supported languages, styles, and versions, see:
|
||||
# For the list of supported languages and styles, see:
|
||||
# https://cdnjs.com/libraries/highlight.js/
|
||||
#
|
||||
# For more info on the highlighting options, see:
|
||||
# https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/#highlighting-options
|
||||
# https://sourcethemes.com/academic/docs/writing-markdown-latex/#highlighting-options
|
||||
highlight = true
|
||||
highlight_languages = []
|
||||
# highlight_style = "github"
|
||||
# highlight_version = "9.9.0"
|
||||
|
||||
# Enable native social sharing buttons?
|
||||
sharing = true
|
||||
sharing = false
|
||||
|
||||
# Privacy pack
|
||||
# Show a cookie consent message to visitors
|
||||
# Anonymize IP in Google Analytics (if enabled)
|
||||
privacy_pack = true
|
||||
|
||||
# Link custom CSS and JS assets
|
||||
# (relative to /static/css and /static/js respectively)
|
||||
@@ -142,60 +191,106 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
# The index of the publication type in the list is used as its unique numerical identifier.
|
||||
# The numeric ID is used in a publication's frontmatter to categorize it.
|
||||
# The language can be edited below.
|
||||
# For multi-lingual sites, copy this block to each language section at the end of this file.
|
||||
# For multilingual sites, `publication_types` can be copied to each language section at the end of this file and
|
||||
# translated.
|
||||
publication_types = [
|
||||
'Uncategorized', # 0
|
||||
'Conference proceedings', # 1
|
||||
'Journal', # 2
|
||||
'Work in progress', # 3
|
||||
'Technical report', # 4
|
||||
'Conference paper', # 1
|
||||
'Journal article', # 2
|
||||
'Manuscript', # 3
|
||||
'Report', # 4
|
||||
'Book', # 5
|
||||
'Book chapter' # 6
|
||||
]
|
||||
'Book section' # 6
|
||||
]
|
||||
|
||||
# Configuration of talk pages.
|
||||
[params.talks]
|
||||
# Show talk time?
|
||||
time = true
|
||||
|
||||
# Configuration of publication pages.
|
||||
[params.publications]
|
||||
# Date format (refer to https://sourcethemes.com/academic/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "January, 2006"
|
||||
|
||||
# Configuration of project pages.
|
||||
[params.projects]
|
||||
# List publications and talks related to the project?
|
||||
list_children = true
|
||||
|
||||
# Post list format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = Stream
|
||||
post_format = 2
|
||||
|
||||
# Publication list format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = APA
|
||||
# 3 = MLA
|
||||
# 4 = Stream
|
||||
publication_format = 4
|
||||
|
||||
# Talk list format.
|
||||
# 0 = Simple
|
||||
# 1 = Detailed
|
||||
# 2 = Stream
|
||||
talk_format = 2
|
||||
|
||||
# Social/Academic Networking
|
||||
#
|
||||
# Icon pack "fa" includes the following social network icons:
|
||||
# Icon pack "fab" includes the following social network icons:
|
||||
#
|
||||
# twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
|
||||
# youtube, instagram, soundcloud
|
||||
#
|
||||
# For email icon, use "fa" icon pack, "envelope" icon, and
|
||||
# For email icon, use "fas" icon pack, "envelope" icon, and
|
||||
# "mailto:your@email.com" as the link.
|
||||
#
|
||||
# Full list: https://fortawesome.github.io/Font-Awesome/icons/
|
||||
# Full list: https://fontawesome.com/icons
|
||||
#
|
||||
# Icon pack "ai" includes the following academic network icons:
|
||||
# Icon pack "ai" includes the following academic icons:
|
||||
#
|
||||
# google-scholar, arxiv, orcid, researchgate, mendeley
|
||||
# cv, google-scholar, arxiv, orcid, researchgate, mendeley
|
||||
#
|
||||
# Full list: https://jpswalsh.github.io/academicons/
|
||||
|
||||
[[params.social]]
|
||||
icon = "envelope"
|
||||
icon_pack = "fa"
|
||||
link = "mailto:pearson@illinois.edu"
|
||||
icon_pack = "fas"
|
||||
link = "mailto:pearson@illinois.edu" # For a direct email link, use "mailto:test@example.org".
|
||||
|
||||
# [[params.social]]
|
||||
# icon = "twitter"
|
||||
# icon_pack = "fab"
|
||||
# link = "https://twitter.com/GeorgeCushen"
|
||||
|
||||
[[params.social]]
|
||||
icon = "google-scholar"
|
||||
icon_pack = "ai"
|
||||
link = "//scholar.google.com/citations?user=K2nzqpYAAAAJ"
|
||||
link = "https://scholar.google.co.uk/citations?user=K2nzqpYAAAAJ"
|
||||
|
||||
[[params.social]]
|
||||
icon = "github"
|
||||
icon_pack = "fa"
|
||||
link = "//github.com/cwpearson"
|
||||
|
||||
[[params.social]]
|
||||
icon = "linkedin"
|
||||
icon_pack = "fa"
|
||||
link = "//www.linkedin.com/in/carl-pearson-b133733a/"
|
||||
link = "https://github.com/cwpearson"
|
||||
|
||||
# Link to a PDF of your resume/CV from the About widget.
|
||||
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
|
||||
# [[params.social]]
|
||||
# icon = "cv"
|
||||
# icon_pack = "ai"
|
||||
# link = "files/cv.pdf"
|
||||
|
||||
# Navigation Links
|
||||
# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
|
||||
# desired widget in your `content/home/` folder.
|
||||
# The weight parameter defines the order that the links will appear in.
|
||||
[params.menus]
|
||||
# Align the main menu to the right of the page? (true/false)
|
||||
align_right = true
|
||||
|
||||
[[menu.main]]
|
||||
name = "Home"
|
||||
@@ -242,6 +337,29 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
url = "#contact"
|
||||
weight = 9
|
||||
|
||||
# Link to a PDF of your resume/CV from the menu.
|
||||
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
|
||||
# [[menu.main]]
|
||||
# name = "CV"
|
||||
# url = "files/cv.pdf"
|
||||
# weight = 7
|
||||
|
||||
# Search.
|
||||
[params.search]
|
||||
# Search provider:
|
||||
# 0: No search engine
|
||||
# 1: Built-in (Fuse)
|
||||
# 2: Algolia (https://www.algolia.com)
|
||||
engine = 1
|
||||
|
||||
# Configuration of Algolia search engine.
|
||||
# Paste the values from your Algolia dashboard.
|
||||
[params.search.algolia]
|
||||
app_id = ""
|
||||
api_key = ""
|
||||
index_name = ""
|
||||
show_logo = false
|
||||
|
||||
# Taxonomies.
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
@@ -250,7 +368,23 @@ smartypants = true # `false` disables all smart punctuation substitutions (e.g.
|
||||
|
||||
# Languages
|
||||
# Create a [languages.X] block for each language you want, where X is the language ID.
|
||||
# Refer to https://sourcethemes.com/academic/docs/language/
|
||||
|
||||
# Configure the English version of the website.
|
||||
[languages.en]
|
||||
languageCode = "en-us"
|
||||
|
||||
# Uncomment the lines below to configure your website in a second language.
|
||||
#[languages.zh]
|
||||
# languageCode = "zh-Hans"
|
||||
# title = "Chinese website title..."
|
||||
# [languages.zh.params]
|
||||
# name = "Your name in Chinese..."
|
||||
# role = "Your role in Chinese..."
|
||||
# [[languages.zh.menu.main]]
|
||||
# name = "Wo"
|
||||
# url = "#about"
|
||||
# weight = 1
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user