-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
29 lines (26 loc) · 911 Bytes
/
work.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
---
layout: page
title: Work
bgcolorclass: bg-alt4
bodyclass: page-work
hero: Building digital products for forward–thinking brands
subtitle:
---
<section class="news-layout section-wrap">
<div class="container">
<h5 class="section-title">Recent Work</h5>
{% assign project_items = site.projects | sort: 'date' | reverse %}
{% for project in project_items %}
<div class="project-block">
<div class="half left">
<h4 class="">{{ project.title }}</h4>
<p>{{ project.description }}</p>
<a class="btn arrow" href="{{ project.url }}">Explore Project</a>
</div><!--/.left-->
<div class="half right">
<img src="{{site.baseurl}}/assets/images/{{project.img}}" alt="{{ project.title }}">
</div><!--/.right-->
</div><!--<!--/.project-block-->
{% endfor %}
</div><!--/.container-->
</section>