at main 813 B view raw
1media_folder = "src/static/media" 2public_folder = "/static/media" 3[backend] 4name = "git-gateway" 5branch = "main" 6 7[[collections]] 8name = "blog" 9label = "Blog Posts" 10label_singular = "Blog Post" 11folder = "src/blog" 12extension = "md" 13format = "yaml-frontmatter" 14 15# Metadata Fields 16[[collections.fields]] 17name = "title" 18label = "Title" 19widget = "string" 20[[collections.fields]] 21name = "summary" 22label = "Summary" 23widget = "text" 24[[collections.fields]] 25name = "draft" 26label = "Draft Status" 27widget = "boolean" 28[[collections.fields]] 29name = "published" 30label = "Publish Date" 31widget = "datetime" 32date_format = "YYYY-MM-DD" 33[[collections.fields]] 34name = "templateEngines" 35label = "Template Engines" 36widget = "hidden" 37default = ["vto", "md"] 38[[collections.fields]] 39name = "body" 40label = "Post Content" 41widget = "markdown"