qsgen3/site.conf.example
Stig-Ørjan Smelror 47a4c04d96 refactor: Standardize theme structure and update configs
- Restructured 'minimal' theme to use 'static/css' and 'static/js' subdirectories for assets, aligning with qsgen3's expected theme structure.
- Moved 'minimaltemplate-v1.css' to 'themes/minimal/static/css/'.
- Moved JS files from 'themes/minimal/css/' to 'themes/minimal/static/js/'.
- Updated 'site.conf.example' to reflect 'minimal' theme usage and correct 'site_theme_css_file' path relative to the theme's static directory.
- Cleaned up redundant CSS variable definitions in 'bin/qsgen3' (_generate_index_page function).
2025-05-31 00:05:05 +02:00

28 lines
975 B
Plaintext

# Example Site Configuration for qsgen3
# Copy this file to 'site.conf' in your project root and customize it.
# --- Site Metadata ---
site_name="My Example Site"
site_tagline="An example site generated by qsgen3"
site_url="http://localhost:8000" # Or your actual production URL
site_theme="minimal" # Specifies the theme to use (e.g., minimal, default)
site_theme_css_file="css/minimaltemplate-v1.css" # Path to main CSS file, relative to THEME'S static/ directory
# --- Paths (relative to project root) ---
paths_content_dir="content"
paths_output_dir="output"
paths_layouts_dir="layouts"
paths_static_dir="static"
# --- Build Options ---
# Generate an RSS feed (true/false)
build_options_generate_rss=true
# Generate a sitemap.xml (true/false)
# Note: sitemap generation is not fully implemented in qsgen3 yet,
# but the configuration option is reserved.
build_options_generate_sitemap=true
# Process draft posts/pages (true/false)
build_options_process_drafts=false