-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.toml
executable file
·151 lines (120 loc) · 4.12 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Configuration of Academic
# Documentation: https://sourcethemes.com/academic/
# The URL of your website.
# End your URL with a `/` trailing slash, e.g. `https://example.com/`.
baseurl = "http://lsd.ucsc.edu/"
relativeurls = true
canonifyurls = true
# Title of your site
title = "Languages, Systems, and Data Lab @ UCSC"
# Your copyright notice - appears in site footer.
# To display a copyright symbol, type `©`.
# LK: I removed this from the footer since I'm not a big fan of copyright notices.
# Edit layouts/partials/footer_container.html to put it back.
copyright = ""
theme = "academic"
enableEmoji = false
footnotereturnlinkcontents = "<sup>↩</sup>"
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
preserveTaxonomyNames = true
paginate = 10
# 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", "RSS" ]
section = [ "HTML", "RSS" ]
# Configure BlackFriday Markdown rendering.
# See: https://gohugo.io/readfiles/bfconfig/
[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).
noreferrerLinks = true
[params]
# Location of the source code for the website
gh_src = "https://github.com/lsd-ucsc/lsd-ucsc.github.io"
# Color theme.
# LK: These are in data/themes and you can define your own
color_theme = "ucsc"
# Font style.
# LK: These are in data/fonts and you can define your own
font = "ucsc"
# Your details.
name = "Languages, Systems, and Data Lab"
canonical_url = "http://lsd.ucsc.edu"
gravatar = false # Get your avatar from Gravatar.com? (true/false)
# LK: Leaving this out since we don't have a logo.
# avatar = "" # Specify an avatar image (in `static/img/` folder) or delete value to disable avatar.
email = ""
address = ""
office_hours = ""
phone = ""
skype = ""
telegram = ""
keybase = ""
# 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 = ""
date_format = "Jan 2, 2006"
time_format = "3:04 PM"
reading_time = false
comment_count = false
section_pager = false
math = false
highlight = true
highlight_languages = []
# highlight_style = "github"
# Enable native social sharing buttons?
sharing = false
# Privacy pack
# Show a cookie consent message to visitors
# Anonymize IP in Google Analytics (if enabled)
privacy_pack = false
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
custom_css = []
custom_js = []
[params.talks]
time = true
# Configuration of publication pages.
[params.publications]
# Date format (refer to Go's date format: http://fuckinggodateformat.com )
# 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
# Publication list format.
# 0 = Simple
# 1 = Detailed
# 2 = APA
# 3 = MLA
publication_format = 3
# 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"
url = "#about"
weight = 1
[[menu.main]]
name = "LSD Seminar"
url = "/lsd-seminar/2025wi/"
weight = 2
[[menu.main]]
name = "People"
url = "#faculty"
weight = 5
# Configure the English version of the website.
[Languages.en]
languageCode = "en-us"