template.go 1.2 KB

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