Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

16 satır
422 B

  1. {% macro nav_loop(page) %}
  2. {% import _self as macros %}
  3. {% for p in page.children.visible %}
  4. {% set active_page = (p.active or p.activeChild) ? 'active' : '' %}
  5. <li>
  6. <a href="{{ p.url }}" class="{{ active_page }}">
  7. {{ p.menu }}
  8. </a>
  9. {% if p.children.visible.count > 0 %}
  10. <ul>
  11. {{ macros.nav_loop(p) }}
  12. </ul>
  13. {% endif %}
  14. </li>
  15. {% endfor %}
  16. {% endmacro %}