parent
edf7192fac
commit
1d970ddcd7
@ -0,0 +1,6 @@ |
|||||||
|
package content |
||||||
|
|
||||||
|
// Blog content data
|
||||||
|
type Blog struct { |
||||||
|
_ interface{} `template:"blog.go.tmpl"` |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
package content |
||||||
|
|
||||||
|
// Error content data
|
||||||
|
type Error struct { |
||||||
|
_ interface{} `template:"error.go.tmpl"` |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
package content |
||||||
|
|
||||||
|
// Index content data
|
||||||
|
type Index struct { |
||||||
|
_ interface{} `template:"index.go.tmpl"` |
||||||
|
} |
Loading…
Reference in new issue