Skip to content

Commit 45d621b

Browse files
committed
adding config folder
1 parent f877f34 commit 45d621b

File tree

4 files changed

+242
-0
lines changed

4 files changed

+242
-0
lines changed

config/_default/config.yaml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
theme: "starter-hugo-academic"
2+
# Configuration of Hugo
3+
# Guide: https://wowchemy.com/docs/getting-started/
4+
# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
5+
# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
6+
7+
title: ALICE KATE LI # Website name
8+
baseURL: 'https://alicekl.github.io/' # Website URL
9+
10+
############################
11+
## LANGUAGE
12+
############################
13+
14+
defaultContentLanguage: en
15+
hasCJKLanguage: false
16+
defaultContentLanguageInSubdir: false
17+
removePathAccents: true
18+
19+
############################
20+
## MODULES
21+
############################
22+
23+
module:
24+
imports:
25+
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms
26+
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify
27+
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-reveal
28+
- path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5
29+
30+
############################
31+
## ADVANCED
32+
############################
33+
34+
enableGitInfo: false
35+
summaryLength: 30
36+
paginate: 10
37+
enableEmoji: true
38+
enableRobotsTXT: true
39+
footnotereturnlinkcontents: <sup>^</sup>
40+
ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$]
41+
permalinks:
42+
event: '/talk/:slug/'
43+
tags: '/tag/:slug/'
44+
categories: '/category/:slug/'
45+
publication_types: '/publication-type/:slug/'
46+
disableAliases: true
47+
outputs:
48+
home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
49+
section: [HTML, RSS]
50+
imaging:
51+
resampleFilter: lanczos
52+
quality: 75
53+
anchor: smart
54+
timeout: 600000
55+
taxonomies:
56+
tag: tags
57+
category: categories
58+
publication_type: publication_types
59+
author: authors
60+
markup:
61+
_merge: deep
62+
related:
63+
threshold: 80
64+
includeNewer: true
65+
toLower: true
66+
indices:
67+
- name: tags
68+
weight: 100
69+
- name: categories
70+
weight: 70
71+
security:
72+
_merge: deep
73+
sitemap:
74+
_merge: deep
75+
minify:
76+
_merge: deep

config/_default/languages.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Languages
2+
# Create a section for each of your site's languages.
3+
# Documentation: https://wowchemy.com/docs/guide/language/
4+
5+
# Default language
6+
en:
7+
languageCode: en-us
8+
# Uncomment for multi-lingual sites, and move English content into `en` sub-folder.
9+
#contentDir: content/en
10+
11+
# Uncomment the lines below to configure your website in a second language.
12+
#zh:
13+
# languageCode: zh-Hans
14+
# contentDir: content/zh
15+
# title: Chinese website title...
16+
# params:
17+
# description: Site description in Chinese...
18+
# menu:
19+
# main:
20+
# - name: 传
21+
# url: '#about'
22+
# weight: 1

config/_default/menus.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Navigation Links
2+
# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
3+
# desired widget in your `content/home/` folder.
4+
# The weight parameter defines the order that the links will appear in.
5+
6+
main:
7+
- name: Home
8+
url: /
9+
weight: 10
10+
- name: Research
11+
url: project/
12+
weight: 20
13+
# - name: Projects
14+
# url: project/
15+
# weight: 30
16+
# - name: Talks
17+
# url: post/
18+
# weight: 40
19+
# - name: Publications
20+
# url: publication/
21+
# weight: 50
22+
# - name: Contact
23+
# url: '#contact'
24+
# weight: 60
25+
26+
# Link to a PDF of your resume/CV from the menu.
27+
# To enable, copy your resume/CV to `static/uploads/resume.pdf` and uncomment the lines below.
28+
# - name: CV
29+
# url: uploads/resume.pdf
30+
# weight: 70

config/_default/params.yaml

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
# SITE SETUP
2+
# Guide: https://wowchemy.com/docs/getting-started/
3+
# Documentation: https://wowchemy.com/docs/
4+
# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
5+
6+
# Appearance
7+
8+
appearance:
9+
theme_day: minimal
10+
theme_night: minimal
11+
font: rose
12+
font_size: L
13+
14+
# SEO
15+
16+
marketing:
17+
seo:
18+
site_type: Person
19+
local_business_type: ''
20+
org_name: ''
21+
description: 'A highly-customizable Hugo academic resume theme powered by Wowchemy website builder.'
22+
twitter: 'wowchemy'
23+
analytics:
24+
google_analytics: ''
25+
baidu_tongji: ''
26+
verification:
27+
google: ''
28+
baidu: ''
29+
30+
# Site header
31+
32+
header:
33+
navbar:
34+
enable: true
35+
align: r
36+
show_logo: true
37+
show_language: false
38+
show_day_night: true
39+
show_search: true
40+
highlight_active_link: true
41+
42+
# Site footer
43+
44+
footer:
45+
copyright:
46+
notice: # © {year} Me. This work is licensed under {license}'
47+
license:
48+
enable: false
49+
allow_derivatives: false
50+
share_alike: true
51+
allow_commercial: false
52+
53+
# Localization
54+
55+
locale:
56+
date_format: 'Jan 2, 2006'
57+
time_format: '3:04 PM'
58+
address_format: en-us
59+
60+
# Site features
61+
62+
features:
63+
syntax_highlighter:
64+
theme_light: github-light
65+
theme_dark: dracula
66+
math:
67+
enable: false
68+
privacy_pack:
69+
enable: false
70+
repository:
71+
url: 'https://github.com/<username>/<repository>'
72+
content_dir: content
73+
branch: main
74+
avatar:
75+
gravatar: false
76+
shape: circle
77+
comment:
78+
provider: ''
79+
disqus:
80+
shortname: ''
81+
show_count: true
82+
commento:
83+
url: ''
84+
giscus:
85+
repo: ''
86+
repo_id: ''
87+
category: ''
88+
category_id: ''
89+
search:
90+
provider: wowchemy
91+
algolia:
92+
app_id: ''
93+
api_key: ''
94+
index_name: ''
95+
show_logo: false
96+
map:
97+
provider: ''
98+
api_key: ''
99+
zoom: 15
100+
101+
# Extensions
102+
103+
extensions:
104+
cms:
105+
branch: main
106+
local_backend: false
107+
academicons:
108+
enable: true
109+
110+
# Security
111+
112+
security:
113+
# Allow frame for embedding speaker notes in slides
114+
allow_frame: true

0 commit comments

Comments
 (0)