-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (25 loc) · 821 Bytes
/
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
---
layout: default
title: A minimal, fixed sidebar grid portfolio Jekyll theme.
description: A minimal, fixed sidebar grid portfolio Jekyll theme.
featured_image: /images/social.jpg
---
<section class="portfolio">
<div class="content-wrap portfolio-wrap">
{% for project in site.projects reversed %}
<div class="portfolio-item">
<a class="portfolio-item__link" href="{{ project.url }}">
<div class="portfolio-item__image">
<img src="{{ project.featured_image }}" alt="{{ project.title }}">
</div>
<div class="portfolio-item__content">
<div class="portfolio-item__info">
<h2 class="portfolio-item__title">{{ project.title }}</h2>
<p class="portfolio-item__subtitle">{{ project.subtitle }}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</section>