| layout | page |
|---|---|
| title | Articles |
| desc | Articles related to Algorithms and Design |
| permalink | /articles/ |
| order | 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>