cached-block-2.html 746 B

123456789101112131415161718192021222324252627
  1. {{if not (eq $.Data.Module "404")}}
  2. {{if eq $.Data.Module "index"}}
  3. {{if eq $.Data.Page.Alias "/"}}
  4. Welcome to home page
  5. {{else}}
  6. Welcome to some another page
  7. {{end}}
  8. {{else if or (eq $.Data.Module "blog") (eq $.Data.Module "blog-post") (eq $.Data.Module "blog-category")}}
  9. {{if eq $.Data.Module "blog-category"}}
  10. Blog category
  11. {{else if eq $.Data.Module "blog-post"}}
  12. Blog post
  13. {{else}}
  14. Blog
  15. {{end}}
  16. {{else if or (eq $.Data.Module "shop") (eq $.Data.Module "shop-product") (eq $.Data.Module "shop-category")}}
  17. {{if eq $.Data.Module "shop-category"}}
  18. Shop category
  19. {{else if eq $.Data.Module "shop-product"}}
  20. Shop product
  21. {{else}}
  22. Shop
  23. {{end}}
  24. {{end}}
  25. {{else}}
  26. Oops, page is not found...
  27. {{end}}