Skip to content

Latest commit

 

History

History
75 lines (60 loc) · 2.36 KB

etiketler.markdown

File metadata and controls

75 lines (60 loc) · 2.36 KB
sitemap layout title excerpt search_omit
true
simple
Konu Etiketleri
Tüm içeriklerin kategorize etiket listesi.
true

🏷️

Etiket Listesi

Etiketlerine göre gruplanmış paylaşımların tümü.

{% assign all_posts = site.posts | concat: site.egitim | concat: site.komut %} {% assign all_tags = "" | split: "" %}

{% for post in all_posts %} {% for tag in post.tags %} {% unless all_tags contains tag %} {% assign all_tags = all_tags | push: tag %} {% endunless %} {% endfor %} {% endfor %}

{% assign sorted_tags = all_tags | sort %}

    {% for tag in sorted_tags %} {% assign tag_posts = site.posts | where: 'tags', tag %} {% assign tag_egitim = site.egitim | where: 'tags', tag %} {% assign tag_komut = site.komut | where: 'tags', tag %} {% assign total_posts = tag_posts | concat: tag_egitim | concat: tag_komut %}
  • {{ tag }}: {{ total_posts.size }}
  • {% endfor %}

Not: Birden fazla etikete sahip olan konuları farklı etiket başlıkları altında tekrar tekrar görebilirsiniz.

{% assign sorted_tags = all_tags | sort %} {% for tag in sorted_tags %} {% assign tag_posts = site.posts | where: 'tags', tag %} {% assign tag_egitim = site.egitim | where: 'tags', tag %} {% assign tag_komut = site.komut | where: 'tags', tag %} {% assign total_posts = tag_posts | concat: tag_egitim | concat: tag_komut %}

{{ tag }}


    {% for post in total_posts %} {% if post.title %}
  • {{ post.title }} {% if post.url contains '/egitim/' %} Doküman {% elsif post.url contains '/komut/' %} Komut {% else %} Blog {% endif %}
  • {% endif %} {% endfor %}
{% endfor %}