template.go 607 B

1234567891011121314151617
  1. package template
  2. var AllData = map[string][]byte{
  3. "blog-category.html": VarBlogCategoryHtmlFile,
  4. "footer.html": VarFooterHtmlFile,
  5. "styles.css": VarStylesCssFile,
  6. "header.html": VarHeaderHtmlFile,
  7. "blog.html": VarBlogHtmlFile,
  8. "index.html": VarIndexHtmlFile,
  9. "robots.txt": VarRobotsTxtFile,
  10. "page.html": VarPageHtmlFile,
  11. "404.html": Var404HtmlFile,
  12. "blog-post.html": VarBlogPostHtmlFile,
  13. "scripts.js": VarScriptsJsFile,
  14. "sidebar-left.html": VarSidebarLeftHtmlFile,
  15. "sidebar-right.html": VarSidebarRightHtmlFile,
  16. }