1234567891011121314151617181920 |
- package template
- var AllData = map[string][]byte{
- "blog-category.html": VarBlogCategoryHtmlFile,
- "footer.html": VarFooterHtmlFile,
- "styles.css": VarStylesCssFile,
- "header.html": VarHeaderHtmlFile,
- "blog.html": VarBlogHtmlFile,
- "shop-product.html": VarShopProductHtmlFile,
- "index.html": VarIndexHtmlFile,
- "robots.txt": VarRobotsTxtFile,
- "page.html": VarPageHtmlFile,
- "404.html": Var404HtmlFile,
- "shop.html": VarShopHtmlFile,
- "shop-category.html": VarShopCategoryHtmlFile,
- "blog-post.html": VarBlogPostHtmlFile,
- "scripts.js": VarScriptsJsFile,
- "sidebar-left.html": VarSidebarLeftHtmlFile,
- "sidebar-right.html": VarSidebarRightHtmlFile,
- }
|