Theme Update

This commit is contained in:
Francesco 2024-04-22 14:19:52 +02:00
parent a39794bd98
commit 49f2ec559d

View File

@ -28,12 +28,14 @@ Here is an example configuration:
```toml ```toml
baseURL = 'https://example.org/' baseURL = 'https://example.org/'
languageCode = 'en-us' languageCode = 'en-us'
disableKinds = ['taxonomy'] title = 'Francesco Tomaselli'
title = 'Title'
theme = 'Typo' theme = 'Typo'
googleAnalytics = "G-XXXXXXXXX" # Disable tags
disableKinds = ['taxonomy']
# Google analytics code
googleAnalytics = "G-xxxxxxxxxx"
[params] [params]
# Math mode # Math mode
@ -43,10 +45,8 @@ math = true
homeIntro = true homeIntro = true
homeIntroTitle = 'Hi!' homeIntroTitle = 'Hi!'
homeIntroContent = """ homeIntroContent = """
Here is my blog, this supports markdown: I am an Italian Software Engineer with a strong foundation in computer science and a passion for solving complex problems.
- a I am interested in a range of topics, including algorithms, distributed systems, databases, and information retrieval.
- b
- c
""" """
# Collection to display on home # Collection to display on home
@ -59,16 +59,15 @@ paginationSize = 100
# Social icons # Social icons
[[params.social]] [[params.social]]
name = "linkedin" name = "linkedin"
url = "https://www.linkedin.com/in/" url = "https://www.linkedin.com/in/your-name"
[[params.social]] [[params.social]]
name = "medium" name = "medium"
url = "https://medium.com/" url = "https://medium.com/@your-name"
[[params.social]] [[params.social]]
name = "github" name = "github"
url = "https://github.com/" url = "https://github.com/your-name"
# Main menu pages # Main menu pages
[[params.menu]] [[params.menu]]
@ -80,13 +79,12 @@ name = "posts"
url = "/posts" url = "/posts"
[[params.menu]] [[params.menu]]
name = "about" name = "resume"
url = "/about" url = "/resume"
# Syntax highligth on code blocks # Syntax highligth on code blocks, all styles:
# https://xyproto.github.io/splash/docs/all.html
[markup] [markup]
[markup.highlight] [markup.highlight]
style = 'algol' style = 'algol'
``` ```
Tags are intentionally omitted.