- Implement flexible theme switching via site.conf (site_theme, site_theme_css_file). - Ensure correct copying of theme static assets, with theme assets overriding root assets. - Resolve CSS linking issues by checking file existence after static copy and using correct paths for Pandoc. - Refactor path construction to prevent duplication when using absolute/relative output paths. - Create comprehensive how-it-works.md detailing system architecture, theme creation, and overall workflow. - Clarify design philosophy: qsgen3 remains design-agnostic, only linking main theme CSS automatically.
20 lines
487 B
Plaintext
20 lines
487 B
Plaintext
# Site Configuration for qsgen3
|
|
|
|
# --- Site Metadata ---
|
|
site_name="My Awesome Site"
|
|
site_tagline="A brief description of my site"
|
|
site_url="http://localhost:8000"
|
|
site_theme="minimal"
|
|
site_theme_css_file="css/minimaltemplate-v1.css"
|
|
|
|
# --- Paths ---
|
|
paths_content_dir="content"
|
|
paths_output_dir="output"
|
|
paths_layouts_dir="layouts"
|
|
paths_static_dir="static"
|
|
|
|
# --- Build Options ---
|
|
build_options_generate_rss=true
|
|
build_options_generate_sitemap=true
|
|
build_options_process_drafts=false
|