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.
|
- ---
- layout: page
- scripts:
- - "/js/build/documentation.js"
- ---
-
- {% include vars.html %}
-
- {% assign guides_size = site.data.guides | size | minus: 1 %}
-
- {% include docsearch.html %}
-
- {% for index in (0..guides_size) %}
- {% assign index_mod = index | modulo: 3 %}
-
- {% if index_mod == 0 %}
- <div class="row">
- {% endif %}
-
- {% assign guide = site.data.guides[index] %}
- <div class="col-lg-4">
- <a class="card guide-card" href="{{url_base}}{{guide.pages[0].path}}">
- <div class="card-block">
- <h4 class="card-title">{{i18n[guide.title]}}</h4>
- <p class="card-text text-muted">
- {{i18n[guide.description]}}
- <span class="float-right text-primary">{{i18n.read_more}}</span>
- </p>
- </div>
- </a>
- </div>
-
- {% if index_mod == 2 %}
- </div>
- {% endif %}
- {% endfor %}
|