You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

additional-reading.html 1.1 kB

2 years ago
12345678910111213141516171819202122232425262728293031323334
  1. {% assign tags = include.tags %}
  2. {% include vars.html %}
  3. <div class="list-group">
  4. <strong class="list-group-item bg-faded">{{i18n.guide_additional_reading}}</strong>
  5. {% for tag in tags %}
  6. {% for guide in site.data.guides %}
  7. {% if guide.tags contains tag %}
  8. <a class="list-group-item list-group-item-action" href="{{url_base}}{{guide.pages[0].path}}">
  9. <h5 class="list-group-item-heading">{{i18n[guide.title]}}</h5>
  10. <p class="list-group-item-text text-muted">{{i18n[guide.description]}}</p>
  11. </a>
  12. {% break %}
  13. {% endif %}
  14. {% endfor %}
  15. {% endfor %}
  16. {% for tag in tags %}
  17. {% for guide in site.data.guides %}
  18. {% for page in guide.pages %}
  19. {% if page.tags contains tag %}
  20. <a class="list-group-item list-group-item-action" href="{{url_base}}{{page.path}}">
  21. <h5 class="list-group-item-heading">{{i18n[page.id]}}</h5>
  22. {% if page.description %}
  23. <p class="list-group-item-text text-muted">{{i18n[page.description]}}</p>
  24. {% endif %}
  25. </a>
  26. {% break %}
  27. {% endif %}
  28. {% endfor %}
  29. {% endfor %}
  30. {% endfor %}
  31. </div>

js yarn包管理组件依赖分析

Contributors (1)