subnav-form.html 1.4 KB

123456789101112131415161718192021222324252627282930
  1. <nav class="navbar has-shadow">
  2. <div class="container">
  3. <div class="navbar-tabs">
  4. <a class="navbar-item is-tab {% if page.doc-subtab == 'general' %}is-active{% endif %}" href="{{ site.url }}/documentation/form/general/">
  5. General
  6. </a>
  7. <a class="navbar-item is-tab {% if page.doc-subtab == 'input' %}is-active{% endif %}" href="{{ site.url }}/documentation/form/input/">
  8. Input
  9. </a>
  10. <a class="navbar-item is-tab {% if page.doc-subtab == 'textarea' %}is-active{% endif %}" href="{{ site.url }}/documentation/form/textarea/">
  11. Textarea
  12. </a>
  13. <a class="navbar-item is-tab {% if page.doc-subtab == 'select' %}is-active{% endif %}" href="{{ site.url }}/documentation/form/select/">
  14. Select
  15. </a>
  16. <a class="navbar-item is-tab {% if page.doc-subtab == 'checkbox' %}is-active{% endif %}" href="{{ site.url }}/documentation/form/checkbox/">
  17. Checkbox
  18. </a>
  19. <a class="navbar-item is-tab {% if page.doc-subtab == 'radio' %}is-active{% endif %}" href="{{ site.url }}/documentation/form/radio/">
  20. Radio
  21. </a>
  22. <a class="navbar-item is-tab {% if page.doc-subtab == 'file' %}is-active{% endif %}" href="{{ site.url }}/documentation/form/file/">
  23. File
  24. <span class="tag is-success" style="margin-left: 1em;">
  25. New!
  26. </span>
  27. </a>
  28. </div>
  29. </div>
  30. </nav>