hugo-theme-minima/exampleSite/config.toml

124 lines
3.6 KiB
TOML
Raw Normal View History

2021-07-18 12:54:56 +02:00
baseURL = "http://h.xjj.pub"
2021-07-18 10:34:01 +02:00
languageCode = "en-us"
title = "Hi Folks"
2021-11-06 08:28:56 +01:00
copyright = "© XJJ 2021"
paginate = 6
2021-07-18 10:34:01 +02:00
googleAnalytics = ""
2021-08-23 16:20:39 +02:00
# theme is the name of the hugo theme you choose,
# `hugo-theme-minima` is put here only for debuging,
# just name it whatever you're gonna handle the theme.
theme = "hugo-theme-minima"
2021-07-19 08:36:50 +02:00
# Author has some of your information to be shown on the home
# page of your blog.
2021-07-18 10:34:01 +02:00
[author]
name = "XJJ"
2021-11-08 17:31:53 +01:00
slogon = "A student and tech lover from Earth 🌍"
2021-11-12 06:34:03 +01:00
description = "This is Minima, a clean and minimal Hugo theme porting from [Minima on Hexo](https://github.com/adisaktijrs/hexo-theme-minima). Except for everything from Hexo Minima like dark/light mode, it supports KaTeX and some taxonomies like categories, series and tags. I created this using SCSS, Vanilla JS and most importantly, Hugo. 😁"
2021-07-18 10:34:01 +02:00
2021-07-19 08:36:50 +02:00
2021-07-18 10:34:01 +02:00
[params]
2021-07-20 09:22:52 +02:00
# iam is the beginning words of your self-introduction.
iam = "I am"
2021-11-08 17:31:53 +01:00
# The subtitle will be shown after the title of your blog site.
# e.g. "title - subtitle".
2021-07-18 10:34:01 +02:00
subtitle = ""
2021-11-06 08:43:48 +01:00
# Comment decides the comment plugin to be used on your blog site,
2021-11-12 08:47:28 +01:00
# e.g. disqus, utterances, ovo.
comment = "utterances"
2021-08-19 06:42:47 +02:00
# timeformat
2021-11-08 17:46:22 +01:00
timeformat = "Jan 02, 2006"
# switch for turning on/off lights.
switch = ["🌚", "🌝"]
# if true, date of posts will be displayed in the homepage.
2021-11-08 17:31:53 +01:00
displayDate = true
# if true, users can select text from your post.
2021-11-06 08:28:56 +01:00
selectable = true
2021-11-12 08:47:28 +01:00
# custom global font. notice: `globalFontFamily` won't be working
# on texts in some special positions like on titles
2021-11-06 08:28:56 +01:00
globalFontFamily = 'Helvatica, sans-serif'
2021-07-19 08:36:50 +02:00
2021-11-12 08:47:28 +01:00
# Disqus configuration
[params.disqus]
shortname = "hugo-minima"
2021-07-18 10:34:01 +02:00
2021-11-12 08:47:28 +01:00
# Utterance configuration
# Full doc's at https://utteranc.es
[params.utterances]
repo = "mivinci/minima-comments"
issueTerm = "pathname"
# OvO is a comment plugin written by the author of Minima.
2021-07-19 08:36:50 +02:00
# It is enabled when params.comment is set "ovo". You can
# find its documentation on https://github.com/ovojs/ovo.
2021-11-12 08:47:28 +01:00
# If you are using disqus or utterance, just ignore this field.
2021-07-19 08:36:50 +02:00
[params.ovo]
server = ""
placeholder = ""
# Params.social is an array containing your social network accounts,
# Each has a lowercase name, a svg formatted icon and a url to the
# webpage of your account. They will be shown at the bottom of every
# page of your blog.
2021-11-08 17:31:53 +01:00
# Be sure the svgs you use must have both its width and its height
# set 18. If you don't wanna put the svg code in this config file,
# you can instead save them to the `data/svg.toml` file under the
# root directory of your blog. e.g. `name = '<svg>'`
2021-07-18 10:34:01 +02:00
[[params.social]]
name = "github"
2021-07-18 12:54:56 +02:00
url = "https://github.com/mivinci"
2021-07-19 08:36:50 +02:00
svg = ""
2021-07-18 10:34:01 +02:00
[[params.social]]
name = "linkedin"
2021-07-18 12:54:56 +02:00
url = "https://linkedin/in/leonard-mivinci-63895317a"
2021-07-19 08:36:50 +02:00
svg = ""
2021-07-18 10:34:01 +02:00
[[params.social]]
name = "twitter"
2021-07-18 12:54:56 +02:00
url = "https://twitter.com/Leonard14733745"
2021-07-19 08:36:50 +02:00
svg = ""
2021-07-18 10:34:01 +02:00
[[params.social]]
name = "rss"
url = "/index.xml"
2021-07-19 08:36:50 +02:00
svg = ""
2021-07-18 10:34:01 +02:00
2021-07-19 08:36:50 +02:00
# Menu.main is an array that's used to decide what entries can be shown
# on the navigator of yur blog. You can use a weight to make them ordered.
2021-07-18 10:34:01 +02:00
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "Categories"
url = "/categories"
weight = 2
[[menu.main]]
name = "Series"
url = "/series"
weight = 3
[[menu.main]]
name = "About"
url = "/about"
2021-07-18 15:40:40 +02:00
weight = 4
2021-07-18 10:34:01 +02:00
2021-07-19 08:36:50 +02:00
2021-11-08 17:31:53 +01:00
# You can classify your posts by setting taxanomies in the front matter
# e.g.
# categories = ["dev"]
# series = ["Building an RPC server"]
# tags = ["hugo", "golang"]
# A little suggestion: one post belongs to one series or one category or multiple tags.
2021-07-18 10:34:01 +02:00
[taxonomies]
category = "categories"
tag = "tags"
series = "series"
2021-07-18 12:54:56 +02:00
2021-07-19 08:36:50 +02:00
# Make sure all the codes in a post are highlighted correctly
# so better not edit this.
2021-07-18 10:34:01 +02:00
[markup.highlight]
lineNos = true
noClasses = false