summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorHimanshu Sardana <himanshusardana2005@gmail.com>2026-03-26 22:53:22 +0000
committerHimanshu Sardana <himanshusardana2005@gmail.com>2026-03-26 22:53:22 +0000
commit2e544388bf3f51c9406e9141375aa027acca165e (patch)
treee70da9d67831c8d91bebc9cb62ae6cc85d376955 /pkg
parentb070c21d3b0d1c4e3a2ccb84eb7090544072a39c (diff)
feat: add rss feed generation
feat: add siteurl to config
Diffstat (limited to 'pkg')
-rw-r--r--pkg/config/config.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go
index 56f40aa..78faef6 100644
--- a/pkg/config/config.go
+++ b/pkg/config/config.go
@@ -12,6 +12,7 @@ type Config struct {
AuthorRole string `yaml:"authorRole"`
AuthorBio string `yaml:"authorBio"`
DefaultTheme string `yaml:"defaultTheme"`
+ SiteURL string `yaml:"siteUrl"`
}
func Load(path string) (*Config, error) {