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.

docs.html 826 B

2 years ago
123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. layout: page
  3. scripts:
  4. - "/js/build/documentation.js"
  5. ---
  6. {% include vars.html %}
  7. {% assign guides_size = site.data.guides | size | minus: 1 %}
  8. {% include docsearch.html %}
  9. {% for index in (0..guides_size) %}
  10. {% assign index_mod = index | modulo: 3 %}
  11. {% if index_mod == 0 %}
  12. <div class="row">
  13. {% endif %}
  14. {% assign guide = site.data.guides[index] %}
  15. <div class="col-lg-4">
  16. <a class="card guide-card" href="{{url_base}}{{guide.pages[0].path}}">
  17. <div class="card-block">
  18. <h4 class="card-title">{{i18n[guide.title]}}</h4>
  19. <p class="card-text text-muted">
  20. {{i18n[guide.description]}}
  21. <span class="float-right text-primary">{{i18n.read_more}}</span>
  22. </p>
  23. </div>
  24. </a>
  25. </div>
  26. {% if index_mod == 2 %}
  27. </div>
  28. {% endif %}
  29. {% endfor %}

js yarn包管理组件依赖分析

Contributors (1)