mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-26 19:15:16 +02:00
Merge pull request #29 from kulla/format-config.toml
config.toml: Format comments.
This commit is contained in:
commit
48c369f594
1 changed files with 26 additions and 10 deletions
|
@ -24,20 +24,26 @@ googleAnalytics = ""
|
||||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||||
date_format = "Mon, Jan 2, 2006"
|
date_format = "Mon, Jan 2, 2006"
|
||||||
|
|
||||||
# Enable global LaTeX math rendering? If false, you can enable it locally on a per page basis.
|
# Enable global LaTeX math rendering? If false, you can enable it locally
|
||||||
|
# on a per page basis.
|
||||||
math = false
|
math = false
|
||||||
|
|
||||||
# Enable native social sharing buttons?
|
# Enable native social sharing buttons?
|
||||||
sharing = true
|
sharing = true
|
||||||
|
|
||||||
# Link custom CSS and JS assets (relative to /static/css and /static/js respectively)
|
# Link custom CSS and JS assets (relative to /static/css and
|
||||||
|
# /static/js respectively)
|
||||||
custom_css = []
|
custom_css = []
|
||||||
custom_js = []
|
custom_js = []
|
||||||
|
|
||||||
# Biography section.
|
# Biography section.
|
||||||
# Section will only be displayed if `content/home/about.md` exists.
|
# Section will only be displayed if `content/home/about.md` exists.
|
||||||
[params.about]
|
[params.about]
|
||||||
interests = ["Artificial Intelligence", "Computational Linguistics", "Information Retrieval"]
|
interests = [
|
||||||
|
"Artificial Intelligence",
|
||||||
|
"Computational Linguistics",
|
||||||
|
"Information Retrieval"
|
||||||
|
]
|
||||||
str_interests = "Interests"
|
str_interests = "Interests"
|
||||||
str_education = "Education"
|
str_education = "Education"
|
||||||
|
|
||||||
|
@ -57,14 +63,16 @@ googleAnalytics = ""
|
||||||
year = 2008
|
year = 2008
|
||||||
|
|
||||||
# Selected Publications section.
|
# Selected Publications section.
|
||||||
# Section will only be displayed if there are publications with `selected = true` in their `+++` preamble.
|
# Section will only be displayed if there are publications with
|
||||||
|
# `selected = true` in their `+++` preamble.
|
||||||
[params.publications_selected]
|
[params.publications_selected]
|
||||||
detailed_list = true
|
detailed_list = true
|
||||||
title = "Selected Publications"
|
title = "Selected Publications"
|
||||||
subtitle = ""
|
subtitle = ""
|
||||||
|
|
||||||
# Publications section.
|
# Publications section.
|
||||||
# Section will only be displayed if there are publications in `content/publication/`.
|
# Section will only be displayed if there are publications in
|
||||||
|
# `content/publication/`.
|
||||||
[params.publications]
|
[params.publications]
|
||||||
count = 10
|
count = 10
|
||||||
detailed_list = false
|
detailed_list = false
|
||||||
|
@ -73,7 +81,7 @@ googleAnalytics = ""
|
||||||
str_all = "More Publications"
|
str_all = "More Publications"
|
||||||
|
|
||||||
# Posts section.
|
# Posts section.
|
||||||
# Section will only be displayed if there are posts in `content/post/`.
|
# Section will only be displayed if there are posts in `content/post/`.
|
||||||
[params.posts]
|
[params.posts]
|
||||||
count = 5
|
count = 5
|
||||||
title = "Recent Posts"
|
title = "Recent Posts"
|
||||||
|
@ -82,7 +90,8 @@ googleAnalytics = ""
|
||||||
str_read_more = "Read more"
|
str_read_more = "Read more"
|
||||||
|
|
||||||
# Projects section.
|
# Projects section.
|
||||||
# Section will only be displayed if there are projects in `content/project/`.
|
# Section will only be displayed if there are projects in
|
||||||
|
# `content/project/`.
|
||||||
[params.projects]
|
[params.projects]
|
||||||
title = "Projects"
|
title = "Projects"
|
||||||
subtitle = ""
|
subtitle = ""
|
||||||
|
@ -97,12 +106,19 @@ googleAnalytics = ""
|
||||||
# Social/Academic Networking
|
# Social/Academic Networking
|
||||||
#
|
#
|
||||||
# Icon pack "fa" includes the following social network icons:
|
# Icon pack "fa" 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 "mailto:your@email.com" as the link.
|
# twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
|
||||||
|
# youtube, instagram, soundcloud
|
||||||
|
#
|
||||||
|
# For email icon, use "fa" icon pack, "envelope" icon, and
|
||||||
|
# "mailto:your@email.com" as the link.
|
||||||
|
#
|
||||||
# Full list: https://fortawesome.github.io/Font-Awesome/icons/
|
# Full list: https://fortawesome.github.io/Font-Awesome/icons/
|
||||||
#
|
#
|
||||||
# Icon pack "ai" includes the following academic network icons:
|
# Icon pack "ai" includes the following academic network icons:
|
||||||
|
#
|
||||||
# google-scholar, arxiv, orcid, researchgate, mendeley
|
# google-scholar, arxiv, orcid, researchgate, mendeley
|
||||||
|
#
|
||||||
# Full list: https://jpswalsh.github.io/academicons/
|
# Full list: https://jpswalsh.github.io/academicons/
|
||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue