Skip to content

Latest commit

 

History

History
38 lines (35 loc) · 1.22 KB

articles.md

File metadata and controls

38 lines (35 loc) · 1.22 KB
layout title desc permalink order
page
Articles
Articles related to Algorithms and Design
/articles/
2
IN PROGRESS
Work in progress on GitHub
    {% for post in site.posts %} {% if post.tag == "wip" %} {% if post.categories contains "articles" %}
  • {{ post.title }}
  • {% endif %} {% endif %} {% endfor %}
    <div class="col s6 complete-div">
        <ul>
        {%  for post in site.posts %}
            {% if post.tag != "wip" %}
            {% if post.categories contains "articles" %}
            <li class="post-title-li"><a class="post-title" href="{{post.url | prepend:site.baseurl }}" > {{ post.title }}</a></li>
            {% endif %}
            {% endif %}
        {% endfor %}
        </ul>
    </div>
    
</div>