-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
48 lines (31 loc) · 1.03 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
---
layout: default
title: Experience the world through my eyes 👀
description: Hossain Khan's personal portfolio site featuring snaps taken over time.
featured_image: /images/front-page/IMG_20180907_073851-camp-ahmek-bridge-bnw.jpg
---
<section class="intro">
<div class="wrap">
<h1>“You don’t take a photograph, you make it.”</h1>
<p>- Ansel Adams</p>
</div>
</section>
<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 | relative_url }}">
<div class="portfolio-item__image">
<img src="{{ project.featured_image | relative_url }}" 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>