template.go 1.3 KB

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