chore: move zola infrastructure to deprecated/
Relocate legacy static site generator configuration to clear namespace for new Rust-based compiler: - config.toml, netlify.toml - sass/, templates/ directories - themes/apollo submodule (updated .gitmodules path) Content directory preserved at root for compatibility.
This commit is contained in:
53
deprecated/config.toml
Normal file
53
deprecated/config.toml
Normal file
@@ -0,0 +1,53 @@
|
||||
theme = "apollo"
|
||||
taxonomies = [{ name = "tags" }]
|
||||
title = "nrdxp"
|
||||
description = "nrdxp's personal site & blog"
|
||||
generate_feeds = true
|
||||
minify_html = true
|
||||
|
||||
# The URL the site will be built for
|
||||
base_url = "https://nrd.sh/"
|
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = true
|
||||
|
||||
# Whether to build a search index to be used later on by a JavaScript library
|
||||
build_search_index = false
|
||||
|
||||
[markdown]
|
||||
# Whether to do syntax highlighting
|
||||
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
||||
highlight_code = true
|
||||
highlight_theme = "ayu-light"
|
||||
|
||||
[extra]
|
||||
theme = "toggle"
|
||||
socials = [
|
||||
{ name = "rss", url = "/atom.xml", icon = "rss" },
|
||||
{ name = "github", url = "https://github.com/nrdxp", icon = "github" },
|
||||
{ name = "twitter", url = "https://x.com/nrdexp", icon = "x-twitter" },
|
||||
{ name = "discord", url = "https://discord.com/users/672485325683032094", icon = "discord" },
|
||||
{ name = "matrix", url = "https://matrix.to/#/@timdeh:matrix.org", icon = "matrix" },
|
||||
{ name = "email", url = "mailto:tim@nrd.sh", icon = "email" },
|
||||
]
|
||||
menu = [
|
||||
{ name = "/blog", url = "/blog", weight = 1 },
|
||||
{ name = "/projects", url = "/projects", weight = 2 },
|
||||
{ name = "/collab", url = "/collab", weight = 3 },
|
||||
{ name = "/about", url = "/about", weight = 4 },
|
||||
{ name = "/tags", url = "/tags", weight = 5 },
|
||||
]
|
||||
repo_view = true
|
||||
repo_url = "https://github.com/nrdxp/nrd.sh/tree/main/content/"
|
||||
favicon = "/icon/favicon.png"
|
||||
stylesheets = [
|
||||
"fira.css",
|
||||
"colors.css",
|
||||
"custom.css"
|
||||
]
|
||||
|
||||
[extra.analytics]
|
||||
enabled = true
|
||||
|
||||
[extra.analytics.goatcounter]
|
||||
user = "nrd"
|
||||
Reference in New Issue
Block a user