mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 21:41:40 +00:00

Update the static site generator to include the date and author automatically as part of the essays. I made a couple changes to the underlying static structure to make this a little more seamless, including: * New "essay.html" template for posts in `/essays` * Added an author taxonomy (can eventually be author pages) * Added Carson as the author of all the existing esssays * Cleaned up manual date entires, where they existed All this will make it easier to publish guest essays and sort the essays (chronologically, by topic, or by author) as the essay base expands.
40 lines
683 B
TOML
40 lines
683 B
TOML
base_url = "https://htmx.org"
|
|
title = "</> htmx - high power tools for html"
|
|
theme = "htmx-theme"
|
|
|
|
compile_sass = false
|
|
build_search_index = false
|
|
generate_feed = true
|
|
|
|
taxonomies = [
|
|
{ name = "tag", render = false, feed = true },
|
|
{ name = "author", render = false, feed = false }
|
|
]
|
|
|
|
[markdown]
|
|
highlight_code = true
|
|
highlight_theme = "two-dark"
|
|
external_links_target_blank = true
|
|
smart_punctuation = true
|
|
|
|
[slugify]
|
|
paths_keep_dates = true
|
|
|
|
[extra]
|
|
# Put all your custom variables here
|
|
|
|
## Candidate code highlighting schemes:
|
|
# 1337
|
|
# ayu-mirage
|
|
# boron
|
|
# charcoal
|
|
# material-dark
|
|
# monokai
|
|
|
|
# subway-madrid
|
|
# subway-moscow
|
|
# Tomorrow
|
|
# two-dark
|
|
# visual-studio-dark
|
|
# zenburn
|