diff --git a/frontend/content/blog.go b/frontend/content/blog.go new file mode 100644 index 0000000..5668e36 --- /dev/null +++ b/frontend/content/blog.go @@ -0,0 +1,6 @@ +package content + +// Blog content data +type Blog struct { + _ interface{} `template:"blog.go.tmpl"` +} diff --git a/frontend/content/error.go b/frontend/content/error.go new file mode 100644 index 0000000..b170e46 --- /dev/null +++ b/frontend/content/error.go @@ -0,0 +1,6 @@ +package content + +// Error content data +type Error struct { + _ interface{} `template:"error.go.tmpl"` +} diff --git a/frontend/content/index.go b/frontend/content/index.go new file mode 100644 index 0000000..a901351 --- /dev/null +++ b/frontend/content/index.go @@ -0,0 +1,6 @@ +package content + +// Index content data +type Index struct { + _ interface{} `template:"index.go.tmpl"` +}