forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall-articles-product.html
44 lines (41 loc) · 2.05 KB
/
all-articles-product.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{% assign product = siteTree[currentLanguage][currentVersion].products[currentProduct] %}
{% assign maxArticles = 10 %}
<div class="py-6 all-articles-list">
<h2 class="font-mktg mb-4">All {{ product.title }} docs</h2>
<div class="d-flex gutter flex-wrap">
{% for category in product.categories %}
{% unless category[1].standalone %}
<div class="col-12 col-lg-4 mb-6 height-full">
<h4 class="mb-3"><a href="{{ category[1].href }}">{{ category[1].title }}</a></h4>
{% if category[1].maptopics %}
<ul class="list-style-none">
{% for maptopic in category[1].maptopics %}
{% unless maptopic[1].hidden %}
{% assign numArticles = category[1].maptopics | obj_size %}
<li class="mb-3 {% if forloop.index > maxArticles %}d-none{% endif %}">
<a href="{{ maptopic[1].href }}">
{{ maptopic[1].title }}
</a>
</li>
{% if numArticles > maxArticles %}
<button class="js-all-articles-show-more btn-link link-gray">Show {{ numArticles | minus: maxArticles }} more {% octicon "chevron-up" class="v-align-text-bottom" %}</button>
{% endif %}
{% endunless %}
{% endfor %}
</ul>
{% else %}
<ul class="list-style-none">
{% assign numArticles = category[1].articles | obj_size %}
{% for article in category[1].articles %}
<li class="mb-3 {% if forloop.index > maxArticles %}d-none{% endif %}"><a href="{{ article[1].href }}">{{ article[1].title }}</a></li>
{% endfor %}
</ul>
{% if numArticles > maxArticles %}
<button class="js-all-articles-show-more btn-link link-gray">Show {{ numArticles | minus: maxArticles }} more {% octicon "chevron-up" class="v-align-text-bottom" %}</button>
{% endif %}
{% endif %}
</div>
{% endunless %}
{% endfor %}
</div>
</div>