| layout | page |
|---|---|
| title | Posts |
| permalink | /posts/ |
{% assign project_posts = site.posts | where: "column", "project-showcase" %} {% for post in project_posts %}
- [{{ post.title }}]({{ post.url | relative_url }}) — {{ post.date | date: "%Y-%m-%d" }} {% endfor %}
{% assign problem_posts = site.posts | where: "column", "problem-exploration" %} {% for post in problem_posts %}
- [{{ post.title }}]({{ post.url | relative_url }}) — {{ post.date | date: "%Y-%m-%d" }} {% endfor %}
{% assign teaching_posts = site.posts | where: "column", "computer-science-teaching" %} {% if teaching_posts.size == 0 %} 暂无文章。 {% else %} {% for post in teaching_posts %}
- [{{ post.title }}]({{ post.url | relative_url }}) — {{ post.date | date: "%Y-%m-%d" }} {% endfor %} {% endif %}
{% assign algorithm_posts = site.posts | where: "column", "algorithms-data-structures" %} {% if algorithm_posts.size == 0 %} 暂无文章。 {% else %} {% for post in algorithm_posts %}
- [{{ post.title }}]({{ post.url | relative_url }}) — {{ post.date | date: "%Y-%m-%d" }} {% endfor %} {% endif %}
{% assign math_posts = site.posts | where: "column", "mathematical-foundations" %} {% if math_posts.size == 0 %} 暂无文章。 {% else %} {% for post in math_posts %}
- [{{ post.title }}]({{ post.url | relative_url }}) — {{ post.date | date: "%Y-%m-%d" }} {% endfor %} {% endif %}