layout: default


<!– Credits: this page shamelessly borrowed a lot from: github.com/kitian616/jekyll-TeXt-theme –> <!– Page Header –>

<!– Main Content –> <section style=“height:100px”></section> <div class=“container”>

<div class="row">
        <div class="col-md">
                <!-- Tags (as filter) -->
                <div id='tag_cloud' class="d-flex flex-wrap js-tags">
                        <a class="tag-button--all" data-encode="" href="{{site.baseurl }}/archive.html">
                                <b>Show All</b>
                                <sup>{{site.posts.size}}</sup>
                        </a>
                        {% capture tags %}
                        {% for tag in site.tags %}
                        <a 
                         href="archive.html?tag={{ tag[0] }}"
                         data-sort="{{ site.posts.size | minus: tag[1].size | prepend: '0000' | slice: -4, 4 }}"
                                data-encode="{{ tag[0] | strip | url_encode }}"
                                class="tag-button"
                                title="{{ tag[0] }}" rel="{{ tag[1].size }}">
                                {{ tag[0] }}
                                <sup>{{tag[1].size}}</sup>
                    </a>
                        {% endfor %}
                        {% endcapture %}
{{ tags | split:'</a>' | sort | join:'</a>' }}
                </div>
    <section style="height:100px"></section>
    <!-- Article List -->
                <div class="mini-post-list js-result d-none">
                {%- assign _sorted_list = site.posts | where: "layout","post"-%}
                {%- assign _sorted_list = _sorted_list | sort: 'date' -%}
                {%- assign _sorted_list = _sorted_list | reverse -%}
                {%- for _article in _sorted_list -%}
                        {%- assign _tags = '' -%}
                        {%- for _tag in _article.tags -%}
                                {%- assign _tag_encode = _tag | strip | url_encode -%}
                                {%- if forloop.last -%}
                                        {%- assign _tags = _tags | append: _tag_encode -%}
                                {%- else -%}
                                        {%- assign _tags = _tags | append: _tag_encode | append: ',' -%}
                                {%- endif -%}
                        {%- endfor -%}
                {% comment %} group by year {% endcomment %}
                {%- assign _currentdate = _article.date | date: '%Y' -%}
                {%- if _currentdate != _date -%}
                        {%- unless forloop.first -%}</section>{%- endunless -%}
                        <section>
                        <span class="fa listing-seperator">
                                <span class="tag-text"><h3>{{ _currentdate }}</h3></span>
                        </span>
                        {%- assign _date = _currentdate -%}
                {%- endif -%}
                        <div class="post-preview item" data-tags="{{ _tags }}">
                            <a href="{{ _article.url | prepend: site.baseurl }}">
                                <h3 class="post-title">
                    {{ _article.title }}
                                </h3>
                                {% if _article.subtitle %}
                                <h4 class="post-subtitle">
                                    {{ _article.subtitle }}
                                </h4>
                                {% endif %}
                            </a>
                                <hr>
                        </div>
                {% endfor %}
        </div>
</div>

</div> <script src='{{ “/assets/js/archive.min.js ” | prepend: site.baseurl }}'></script>