All checks were successful
Zola / build-and-deploy (push) Successful in 11s
- Implementado tema Apollo como base visual. - Segregación de contenido: Artículos movidos a /blog. - Creación de identidad: Nueva página 'Sobre mí' (about.md). - CI/CD: Actualizado workflow para soporte de submódulos recursivos. - UX: Ajustes en homepage para listado de últimos posts.
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
# config.toml
|
|
|
|
theme = "apollo"
|
|
taxonomies = [{ name = "tags" }]
|
|
base_url = "https://alejandrogs.es"
|
|
title = "~/alejandrogs.es"
|
|
description = "Ingeniería, Soberanía y Software Libre."
|
|
default_language = "es"
|
|
minify_html = true
|
|
|
|
build_search_index = true
|
|
|
|
[search]
|
|
include_title = true
|
|
include_description = true
|
|
include_path = true
|
|
include_content = true
|
|
index_format = "elasticlunr_json"
|
|
|
|
[extra]
|
|
theme = "toggle"
|
|
fancy_code = true
|
|
fediverse = true
|
|
fediverse_creator = "@alejandrogs73@fosstodon.org"
|
|
mathjax = true
|
|
mathjax_dollar_inline_enable = true
|
|
|
|
socials = [
|
|
{ name = "twitter", url = "https://twitter.com/alejandro_gs73", icon = "twitter" },
|
|
{ name = "github", url = "https://github.com/alejandrogs73/", icon = "github" },
|
|
{ name = "mastodon", url = "https://fosstodon.org/@alejandrogs73/", icon = "mastodon" },
|
|
{ name = "email", url = "mailto:mail@alejandrogs.es", icon = "email" },
|
|
|
|
|
|
]
|
|
menu = [
|
|
{ name = "/posts", url = "/posts", weight = 1 },
|
|
{ name = "/about", url = "/about", weight = 2 },
|
|
{ name = "/contact", url = "/contact", weight = 3 },
|
|
]
|
|
|
|
|
|
|
|
|