| layout | page |
|---|---|
| title | Paper Reviews |
| permalink | /paper-reviews/ |
| main_nav | true |
| nav_order | 3 |
{% assign dedicated_pages = "Paper Reviews,Summaries,Insights" | split: "," %} {% for category in site.categories %} {% capture cat %}{{ category | first }}{% endcapture %} {% unless dedicated_pages contains cat %} {% assign cat_temp = cat | replace: "-", " " | replace: "_", " " %} {% assign words = cat_temp | split: " " %} {% assign cat_display = "" %} {% for word in words %} {% capture capitalized_word %}{{ word | capitalize }}{% endcapture %} {% if forloop.first %} {% assign cat_display = capitalized_word %} {% else %} {% assign cat_display = cat_display | append: " " | append: capitalized_word %} {% endif %} {% endfor %}
{% for desc in site.descriptions %} {% if desc.cat == cat %}{{ desc.desc }}
{% endif %} {% endfor %}-
{% for post in site.categories[cat] %}
- {{ post.title }} - {{ post.date | date_to_long_string }} {% endfor %}
{% endif %} {% endunless %} {% endfor %}