Visually reflect structure of articles and map topics within categories displayed in "All docs" section of landing pages (#19377)

This commit is contained in:
Kevin Heis 2021-05-18 07:14:31 -07:00 коммит произвёл GitHub
Родитель 49aa99c579
Коммит c3cc0ba70c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 24 добавлений и 4 удалений

Просмотреть файл

@ -16,8 +16,13 @@
{% assign article = xarticle[1] %}
<li class="mb-3 {% if forloop.index > maxArticles %}d-none{% endif %}">
<a href="{{ article.href }}">
{{ article.title }}
</a>
{{ article.title }}<!--
--></a>
{% comment %}
<small class="color-text-secondary d-inline-block">
&bull; {{ article.childArticles | obj_size }} articles
</small>
{% endcomment %}
</li>
{% endfor %}
{% assign numArticles = maptopic.childArticles | obj_size %}

Просмотреть файл

@ -17,8 +17,11 @@
{% 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>
{{ maptopic[1].title }}<!--
--></a>
<small class="color-text-secondary d-inline-block">
&bull; {{ maptopic[1].articles | obj_size }} articles
</small>
</li>
{% if numArticles > maxArticles %}
<button class="js-all-articles-show-more btn-link Link--secondary">Show {{ numArticles | minus: maxArticles }} more {% octicon "chevron-up" class="v-align-text-bottom" %}</button>

Просмотреть файл

@ -32,3 +32,9 @@
{% endfor %}
</div>
</div>
{% comment %}
<small class="color-text-secondary d-inline-block">
&bull; {{ article.childArticles | obj_size }} articles
</small>
{% endcomment %}

Просмотреть файл

@ -44,3 +44,9 @@
{% endfor %}
</div>
</div>
{% comment %}
<small class="color-text-secondary d-inline-block">
&bull; {{ article.childArticles | obj_size }} articles
</small>
{% endcomment %}