template.go 742 B

1234567891011121314151617181920
  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. "shop-product.html": VarShopProductHtmlFile,
  9. "index.html": VarIndexHtmlFile,
  10. "robots.txt": VarRobotsTxtFile,
  11. "page.html": VarPageHtmlFile,
  12. "404.html": Var404HtmlFile,
  13. "shop.html": VarShopHtmlFile,
  14. "shop-category.html": VarShopCategoryHtmlFile,
  15. "blog-post.html": VarBlogPostHtmlFile,
  16. "scripts.js": VarScriptsJsFile,
  17. "sidebar-left.html": VarSidebarLeftHtmlFile,
  18. "sidebar-right.html": VarSidebarRightHtmlFile,
  19. }