package blog const editor = `

Blogs Portfolio Author

{{ .Page }}
` type editorStruct struct { SelectedPage string Page string } const blogPage = `

{{.Editor}}
` type blogPageStruct struct { Selected string Editor string Blogs []BlogList } const blogForm = `

{{.Result}}

` type blogFormStruct struct { Blog Blog Result string } const portfolioPage = `

{{.Editor}}
` type portfolioPageStruct struct { Selected string Editor string Projects []PortfolioProject } // TODO: Add Languages to editor const portfolioForm = `
{{.Result}}

` type portfolioFormStruct struct { Project PortfolioProject Result string } const authorPage = `

{{.Editor}}
` type authorPageStruct struct { Selected string Editor string Authors []Author } const authorForm = `
{{.Result}}

` type authorFormStruct struct { Author Author Result string }