forked from Mathpix/spectra-review-paper-competition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.njk
26 lines (25 loc) · 841 Bytes
/
index.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout: layout.njk
---
<div class="header-inner">
All Submissions
</div>
<div class="articles page-content">
<div class="articles-wrapper">
{%- for page in collections.pages -%}
{% if page.data.title and page.data.description and page.data.author and page.url %}
<div class="articles-item">
<div class="articles-item-title">
<a href="{{ page.url }}">{{ page.data.title }}</a>
</div>
<p class="articles-item-author">
{{ page.data.author }}
</p>
<p class="articles-item-description">
{{page.data.description}}
</p>
</div>
{% endif %}
{%- endfor -%}
</div>
</div>