mirror of
https://github.com/zopiya/blog.git
synced 2025-11-03 12:16:46 +08:00
83 lines
1.5 KiB
TOML
83 lines
1.5 KiB
TOML
baseURL = 'https://example.org/'
|
|
languageCode = 'en-us'
|
|
title = 'My website'
|
|
theme = 'typo'
|
|
|
|
# Google analytics code
|
|
googleAnalytics = "G-xxxxxxxxx"
|
|
|
|
[taxonomies]
|
|
tag = 'tags'
|
|
|
|
[params]
|
|
# Meta description
|
|
description = "A Tech Blog"
|
|
|
|
# Appearance settings
|
|
theme = 'auto'
|
|
colorPalette = 'default'
|
|
hideHeader = false
|
|
|
|
# Intro on main page, content is markdown
|
|
homeIntroTitle = 'Hi!'
|
|
homeIntroContent = """
|
|
I am an Italian Software Engineer with a strong foundation in computer science and a passion for solving complex problems.
|
|
I am interested in a range of topics, including algorithms, distributed systems, databases, and information retrieval.
|
|
"""
|
|
|
|
# Collection to display on home
|
|
homeCollectionTitle = 'Posts'
|
|
homeCollection = 'posts'
|
|
|
|
# Lists parameters
|
|
paginationSize = 100
|
|
listSummaries = true
|
|
listDateFormat = '2 Jan 2006'
|
|
|
|
# Breadcrumbs
|
|
[params.breadcrumbs]
|
|
enabled = true
|
|
showCurrentPage = true
|
|
home = "Home"
|
|
|
|
# Social icons
|
|
[[params.social]]
|
|
name = "linkedin"
|
|
url = "https://www.linkedin.com/in/user/"
|
|
|
|
[[params.social]]
|
|
name = "medium"
|
|
url = "https://medium.com/@user"
|
|
|
|
[[params.social]]
|
|
name = "github"
|
|
url = "https://github.com/user"
|
|
|
|
# Main menu pages
|
|
[[params.menu]]
|
|
name = "home"
|
|
url = "/"
|
|
|
|
[[params.menu]]
|
|
name = "posts"
|
|
url = "/posts"
|
|
|
|
[[params.menu]]
|
|
name = "about"
|
|
url = "/about"
|
|
|
|
# Syntax highlight on code blocks
|
|
[markup]
|
|
[markup.highlight]
|
|
style = 'algol'
|
|
|
|
# Giscus comments
|
|
[params.giscus]
|
|
enable = false
|
|
repo = "user/repo"
|
|
repoid = "repoId"
|
|
category = "General"
|
|
categoryid = "categoryId"
|
|
mapping = "pathname"
|
|
theme = "preferred_color_scheme"
|