feat: Demoted author to a param.

This commit is contained in:
Spencer Brower
2026-07-21 10:22:30 -04:00
parent bed7effd4b
commit cc42e694fd
6 changed files with 17 additions and 17 deletions
-3
View File
@@ -19,7 +19,6 @@ Site :: struct {
vfs: VFS,
title: string,
description: string,
author: string,
base_url: string,
config_path: string,
content_dir: string,
@@ -44,7 +43,6 @@ Config_File :: struct {
title: string,
description: string,
base_url: string,
author: string,
content_dir: string,
assets_dir: string,
output_dir: string,
@@ -136,7 +134,6 @@ load_config_file :: proc(
site_apply_config :: proc(site: ^Site, config: Config_File, config_dir: string) {
if config.title != "" do site.title = config.title
if config.description != "" do site.description = config.description
if config.author != "" do site.author = config.author
if config.base_url != "" do site.base_url = config.base_url
site.content_dir =