1.7 KiB
1.7 KiB
title, layout, collection, permalink
| title | layout | collection | permalink |
|---|---|---|---|
| Tutorials | archive | tutorials | /tutorials/ |
{% if paginator %} {% assign tutorials = paginator.tutorials %} {% else %} {% assign tutorials = site.tutorials %} {% endif %}
<script type="text/javascript"> function filterTutorialsUsingCategory(selectedCategory) { {% for tutorial in tutorials %} var cats = {{ tutorial.tags | jsonify }} var tutorialDiv = document.getElementById("tutorial-{{tutorial.title | slugify}}"); tutorialDiv.style.display = (selectedCategory == 'All' || cats.includes(selectedCategory)) ? 'unset' : 'none'; {% endfor %} } </script>
All ({{ tutorials.size }})
{% assign tags = site.tutorials | map: 'tags' | join: ',' | split: ',' | group_by: tag %}
{% for cat in tags %}
{{ cat.name }} ({{ cat.size }})
{% endfor %}