Add empty content data that is mapped to templates

This commit is contained in:
2021-12-03 02:40:03 +01:00
parent edf7192fac
commit 1d970ddcd7
3 changed files with 18 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
package content
// Blog content data
type Blog struct {
_ interface{} `template:"blog.go.tmpl"`
}
+6
View File
@@ -0,0 +1,6 @@
package content
// Error content data
type Error struct {
_ interface{} `template:"error.go.tmpl"`
}
+6
View File
@@ -0,0 +1,6 @@
package content
// Index content data
type Index struct {
_ interface{} `template:"index.go.tmpl"`
}