Prev / Next / 残日録 --- The Remains of the Day

 それほど恥ずかしくない程度の Github pages ができたので・・・ merapano.github.io です:[Linux]

2020-11-02

Liquid がなかなか面白い。 タグクラウドをつくってみた。


{% raw %}

{% for tag in site.tags %}
<a href="{{ tag[0] | prepend: "#" }}">{{ tag[0] | prepend: " | "}}</a>{% endfor %}

-----

{% for tag in site.tags %}
  <h3><a name="{{ tag[0] }}" id="{{ tag[0] }}">{{ tag[0] }}</a></h3>
  <ul>
    {% for post in tag[1] %}
      <li><a href="{{ post.url }}">{{ post.title }}</a>
      </li>
    {% endfor %} 
  </ul>
{% endfor %}

{% endraw %}

この Liquid を jekyll が 解釈して、 こんな風なタグクラウドができあがった。

permlink