cached-block-1.html 836 B

1234567891011121314151617181920212223
  1. {{if not (eq $.Data.Module "404")}}
  2. {{if eq $.Data.Module "index"}}
  3. {{$.Data.Page.Name}}
  4. {{else if or (eq $.Data.Module "blog") (eq $.Data.Module "blog-post") (eq $.Data.Module "blog-category")}}
  5. {{if eq $.Data.Module "blog-category"}}
  6. Posts of category "{{$.Data.Blog.Category.Name}}" | Blog
  7. {{else if eq $.Data.Module "blog-post"}}
  8. {{$.Data.Blog.Post.Name}} | Blog
  9. {{else}}
  10. Latest posts | Blog
  11. {{end}}
  12. {{else if or (eq $.Data.Module "shop") (eq $.Data.Module "shop-product") (eq $.Data.Module "shop-category")}}
  13. {{if eq $.Data.Module "shop-category"}}
  14. Products of category "{{$.Data.Shop.Category.Name}}" | Shop
  15. {{else if eq $.Data.Module "shop-product"}}
  16. {{$.Data.Shop.Product.Name}} {{$.Data.Shop.Product.Id}} | Shop
  17. {{else}}
  18. Latest products | Shop
  19. {{end}}
  20. {{end}}
  21. {{else}}
  22. Error 404
  23. {{end}}