-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.39 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
---
layout: page
title: Brian Z. O'Toole - Create. Innovate. Inspire.
description: Brian O'Toole is a creative web strategist and web developer living in Tampa, Florida.
bodyclass: page-home
bgcolorclass: bg-alt4
hero: Helping brands connect with audiences through intelligent design & technology
---
<div class="page-home">
<section class="section-wrap section-work bg-white" id="more">
<div class="container">
<h5 class="section-title">Recent Work</h5>
{% assign project_items = site.projects | where: "featured-home", "true" | sort: 'order' %}
{% for project in project_items limit:2 %}
<a href="{{ project.url }}">
<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><!--/.half-->
<div class="half right">
<img src="{{site.baseurl}}/assets/images/{{project.img}}" alt="{{ project.title }}">
</div><!--/.half -->
</div><!--<!--/.project-block-->
</a>
{% endfor %}
<div class="project-more-wrapper row end-xs">
<a class="btn arrow right" href="{{ project.url }}/work">View More Projects</a>
</div><!--<!--/.project-more-wrapper-->
</div><!--/.container-->
</section>
</div><!--/.page-home-->