---
layout: minimal
title: "#Tags | Sutanlab Blog"
permalink: /tags/index.html
description: "Take a look at my beautiful blog tags."
image: /assets/img/bg/desk4.jpg
---
{% for tag in site.tags %}
{{ tag[0] }}
{% assign pages_list = tag[1] %}
{% for post in pages_list reversed %}
{% if post.title != null %}
{% if group == null or group == post.group %}
- {{ post.title }}
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
{% assign group = nil %}
{% endfor %}