-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (34 loc) · 1 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
48
49
50
51
---
layout: default
title: Projects
description: Creating software and learning new things.
featured_image: /images/home.jpg
---
<section class="hero">
<div class="hero__image" style="background-image: url({{ page.featured_image }})">
<div class="hero__overlay"></div>
</div>
<div class="wrap">
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
{% include socials.html %}
</div>
</section>
<section class="listing">
<div class="wrap">
{% for project in site.projects reversed %}
<article class="post">
<div class="post__image-wrap">
<div class="post__image" style="background-image: url({{ project.featured_image }})"></div>
</div>
<div class="post__content-wrap">
<div class="post__content">
<h2 class="post__title"><a href="{{ project.url }}">{{ project.title }}</a></h2>
<p class="post__subtitle">{{ project.subtitle }}</p>
<p class="post__description">{{ project.description }}</p>
</div>
</div>
</article>
{% endfor %}
</div>
</section>