cached_block_4_html_file.go 506 B

123456789101112131415
  1. package template
  2. var VarCachedBlock_4HtmlFile = []byte(`{{if $.Data.Shop.Category}}
  3. {{range $.Data.Shop.Categories $.Data.Shop.Category.Id 1}}
  4. <li class="{{if and $.Data.Shop.Category (eq $.Data.Shop.Category.Id .Id)}}active{{end}}">
  5. <a href="{{.Permalink}}">{{.Name}}</a>
  6. </li>
  7. {{end}}
  8. {{else}}
  9. {{range $.Data.Shop.Categories 0 1}}
  10. <li class="{{if and $.Data.Shop.Category (eq $.Data.Shop.Category.Id .Id)}}active{{end}}">
  11. <a href="{{.Permalink}}">{{.Name}}</a>
  12. </li>
  13. {{end}}
  14. {{end}}`)