template.go 1.3 KB

12345678910111213141516171819202122232425262728
  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. "maintenance.html": VarMaintenanceHtmlFile,
  14. "email-new-order-admin.html": VarEmailNewOrderAdminHtmlFile,
  15. "robots.txt": VarRobotsTxtFile,
  16. "page.html": VarPageHtmlFile,
  17. "cached-block-2.html": VarCachedBlock_2HtmlFile,
  18. "404.html": Var404HtmlFile,
  19. "shop.html": VarShopHtmlFile,
  20. "shop-category.html": VarShopCategoryHtmlFile,
  21. "blog-post.html": VarBlogPostHtmlFile,
  22. "scripts.js": VarScriptsJsFile,
  23. "sidebar-left.html": VarSidebarLeftHtmlFile,
  24. "cached-block-4.html": VarCachedBlock_4HtmlFile,
  25. "sidebar-right.html": VarSidebarRightHtmlFile,
  26. "cached-block-5.html": VarCachedBlock_5HtmlFile,
  27. }