series_acme_next.html 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <div class="seriesContext">
  2. <a>
  3. {% assign pages = site.pages | sort:"weight" %}
  4. {% for pg in pages %}
  5. {% if pg.series == "ACME series" %}
  6. {% if pg.weight > page.weight %}
  7. <a href="{{pg.url | remove: '/'}}"><button type="button" class="btn btn-primary">Next: {{pg.title}}</button></a>
  8. {% break %}
  9. {% endif %}
  10. {% endif %}
  11. {% endfor %}
  12. </a>
  13. &nbsp;
  14. <div class="btn-group">
  15. <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Jump to: <span class="caret"></span></button>
  16. <ol class="dropdown-menu">
  17. {% for pg in pages %}
  18. {% if pg.series == "ACME series" %}
  19. {% if pg.url == page.url %}
  20. <li class="active"> → {{pg.weight}}. {{pg.title}}</li>
  21. {% else %}
  22. <li>
  23. <a href="{{pg.url | remove: '/'}}">{{pg.title}}</a>
  24. </li>
  25. {% endif %}
  26. {% endif %}
  27. {% endfor %}
  28. </ol>
  29. </div>
  30. </div>