-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpast_challenges.html
More file actions
32 lines (31 loc) · 841 Bytes
/
past_challenges.html
File metadata and controls
32 lines (31 loc) · 841 Bytes
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
27
28
29
30
31
32
---
layout: home
title: News and Events / Imagine.Dat
permalink: /past_challeges/
---
<div class="Past_Challenge">
<ul class="Past_Challenge__list">
{% for blog in site.posts%}
<li class="Past_Challenge__item">
<div class="Past_Challenge__item-container">
<div class="image_container">
<section>
<img class="featImg " src="{{blog.featureImg}}" />
</section>
</div>
<div class="Past_Challenge__item-excerpt">
<a href="{{ blog.url }}">
<h3 class="Past_Challenge__item-title">
{{blog.title}}
</h3>
<div class="underline"></div>
</a>
<div class="Past_Challenge__item-text">
{{ blog.excerpt }}
</div>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>