-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwork.html
53 lines (50 loc) · 1.57 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: default
title: Happy users, happy clients
microtitle: Work
meta: The projects I've worked on for clients and agencies as a frontend developer/architect.
schema: CollectionPage
---
<main role="main" class="l-main u-wrap">
<div class="s-text">
<h1 itemprop="headline" id="skip" tabindex="-1">{{ page.title }}</h1>
<p>
These are some of the projects I've worked on that I thought you may find
interesting. They show my journey from my first steps in web development
to my expertise in frontend design and architecture.
</p>
</div>
<div class="c-project-list">
{% assign worklist = site.work | sort: 'order' %}
{% for project in worklist %}
<div
class="c-project"
itemscope
itemid="{{ project.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"
itemtype="https://schema.org/CreativeWork"
>
<div class="c-project__header">
<a
itemprop="url"
class="c-project__link"
href="{{ project.link }}"
rel="external"
>
<img
itemprop="image"
class="c-project__logo"
src="/images/work/{{ project.logo }}"
alt="{{ project.title }} logo"
/>
</a>
</div>
<div class="c-project__content">
<div class="s-text">
<strong itemprop="name">{{ project.title }}</strong>
<span itemprop="text">{{ project.meta }}</span>
</div>
</div>
</div>
{% endfor %}
</div>
</main>