Volodymyr Tkach 2 years ago
parent
commit
5eb922644c
1 changed files with 15 additions and 15 deletions
  1. 15 15
      engine/assets/template/template.go

+ 15 - 15
engine/assets/template/template.go

@@ -1,28 +1,28 @@
 package template
 
 var AllData = map[string][]byte{
-	"email-new-order-user.html":  VarEmailNewOrderUserHtmlFile,
-	"cached-block-3.html":        VarCachedBlock_3HtmlFile,
-	"cached-block-1.html":        VarCachedBlock_1HtmlFile,
-	"blog-category.html":         VarBlogCategoryHtmlFile,
-	"footer.html":                VarFooterHtmlFile,
-	"styles.css":                 VarStylesCssFile,
-	"header.html":                VarHeaderHtmlFile,
 	"blog.html":                  VarBlogHtmlFile,
+	"shop.html":                  VarShopHtmlFile,
 	"shop-product.html":          VarShopProductHtmlFile,
-	"index.html":                 VarIndexHtmlFile,
 	"maintenance.html":           VarMaintenanceHtmlFile,
+	"footer.html":                VarFooterHtmlFile,
+	"header.html":                VarHeaderHtmlFile,
+	"sidebar-right.html":         VarSidebarRightHtmlFile,
+	"index.html":                 VarIndexHtmlFile,
 	"email-new-order-admin.html": VarEmailNewOrderAdminHtmlFile,
+	"cached-block-2.html":        VarCachedBlock_2HtmlFile,
 	"robots.txt":                 VarRobotsTxtFile,
+	"cached-block-4.html":        VarCachedBlock_4HtmlFile,
+	"cached-block-5.html":        VarCachedBlock_5HtmlFile,
+	"scripts.js":                 VarScriptsJsFile,
 	"page.html":                  VarPageHtmlFile,
-	"cached-block-2.html":        VarCachedBlock_2HtmlFile,
+	"blog-category.html":         VarBlogCategoryHtmlFile,
+	"cached-block-3.html":        VarCachedBlock_3HtmlFile,
 	"404.html":                   Var404HtmlFile,
-	"shop.html":                  VarShopHtmlFile,
-	"shop-category.html":         VarShopCategoryHtmlFile,
 	"blog-post.html":             VarBlogPostHtmlFile,
-	"scripts.js":                 VarScriptsJsFile,
+	"shop-category.html":         VarShopCategoryHtmlFile,
 	"sidebar-left.html":          VarSidebarLeftHtmlFile,
-	"cached-block-4.html":        VarCachedBlock_4HtmlFile,
-	"sidebar-right.html":         VarSidebarRightHtmlFile,
-	"cached-block-5.html":        VarCachedBlock_5HtmlFile,
+	"styles.css":                 VarStylesCssFile,
+	"email-new-order-user.html":  VarEmailNewOrderUserHtmlFile,
+	"cached-block-1.html":        VarCachedBlock_1HtmlFile,
 }