-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·47 lines (31 loc) · 1.04 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: default
title: A beautiful two-column Jekyll theme
description: A beautiful, minimal two-column portfolio theme built for Jekyll. Duet makes your work look simply awesome.
featured_image: /images/social.jpg
---
<section class="intro">
<div class="wrap">
<h1>Events:</h1>
<p>Events that I've helped organize.</p>
</div>
</section>
<section class="portfolio">
<div class="content-wrap portfolio-wrap">
{% for event in site.events reversed %}
<div class="portfolio-item">
<a class="portfolio-item__link" href="{{ event.url | relative_url }}">
<div class="portfolio-item__image">
<img src="{{ event.featured_image | relative_url }}" alt="{{ event.title }}">
</div>
<div class="portfolio-item__content">
<div class="portfolio-item__info">
<h2 class="portfolio-item__title">{{ event.title }}</h2>
<p class="portfolio-item__subtitle">{{ event.subtitle }}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</section>