template.go 1008 B

12345678910111213141516171819202122232425
  1. package template
  2. var AllData = map[string][]byte{
  3. "cached-block-3.html": VarCachedBlock_3HtmlFile,
  4. "cached-block-1.html": VarCachedBlock_1HtmlFile,
  5. "blog-category.html": VarBlogCategoryHtmlFile,
  6. "footer.html": VarFooterHtmlFile,
  7. "styles.css": VarStylesCssFile,
  8. "header.html": VarHeaderHtmlFile,
  9. "blog.html": VarBlogHtmlFile,
  10. "shop-product.html": VarShopProductHtmlFile,
  11. "index.html": VarIndexHtmlFile,
  12. "robots.txt": VarRobotsTxtFile,
  13. "page.html": VarPageHtmlFile,
  14. "cached-block-2.html": VarCachedBlock_2HtmlFile,
  15. "404.html": Var404HtmlFile,
  16. "shop.html": VarShopHtmlFile,
  17. "shop-category.html": VarShopCategoryHtmlFile,
  18. "blog-post.html": VarBlogPostHtmlFile,
  19. "scripts.js": VarScriptsJsFile,
  20. "sidebar-left.html": VarSidebarLeftHtmlFile,
  21. "cached-block-4.html": VarCachedBlock_4HtmlFile,
  22. "sidebar-right.html": VarSidebarRightHtmlFile,
  23. "cached-block-5.html": VarCachedBlock_5HtmlFile,
  24. }