mirror of
https://github.com/bigskysoftware/htmx.git
synced 2026-03-12 08:59:08 +00:00
flatten website directory structure and redesign UI - move all templates from themes/htmx-theme/templates/ to www/templates/ - move all static assets from themes/htmx-theme/static/ to www/static/ - remove theme layer and update config.toml - add tailwind css with typography plugin - update hero section with 3D effects and subtle synthwave aesthetic - update header with improved design and navigation - add shortcut for search bar in header (CMD+K on macos, CTRL+K elsewhere) - add status bar in header that displays title=... attribute on hover for any element - update footer with improved design and navigation - rename "examples" to "patterns" throughout site and docs - reorganize patterns page from 7 categories to 4 (loading, interaction, display, advanced) - add mac os9 finder-style design to patterns page with Chicago FLF font (classic OS9 window title font) - add sidebar table of contents for /docs/, /reference/, and /htmx-4/ pages (mobile version still TODO) - add `npm run site` script that uses npx for tailwindcss and zola-bin (no external dependencies needed) - remove github buttons.js dependency and replace with custom buttons - consolidate sponsor images into www/static/img/sponsors/ with logo-<company>.png|svg format - standardize all image filenames to lowercase kebab-case - clean up unused sponsor images from www/static/img/ - create construction_warning() shortcode for work-in-progress sections - add reusable template components (toc, anchor links, sponsors shortcode) - add horse easter egg when URL includes ?horse=true - update website htmx.js to latest version - update npm dependencie
40 lines
706 B
TOML
40 lines
706 B
TOML
base_url = "https://four.htmx.org"
|
|
title = "</> htmx - high power tools for html"
|
|
|
|
compile_sass = false
|
|
build_search_index = false
|
|
generate_feeds = true
|
|
|
|
taxonomies = [
|
|
{ name = "tag", render = false, feed = true },
|
|
{ name = "author", render = false, feed = false }
|
|
]
|
|
|
|
[markdown]
|
|
highlight_code = true
|
|
highlight_theme = "syntax-theme"
|
|
extra_syntaxes_and_themes = ["."]
|
|
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
|