-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
92 lines (90 loc) · 2.6 KB
/
portfolio.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
layout: default
section_id: portfolio
works_left:
- title: Duropac
link_to: portfolio-item.html
image: images/@stock/home-work-1.jpg
categories: Catalogue
- title: Duropac
link_to: portfolio-item2.html
image: images/@stock/home-work-2.jpg
categories: Product photography
- title: Seal 'n Cook
link_to: portfolio-item3.html
image: images/@stock/home-work-3.jpg
categories: Branding
- title: Challenges
link_to: portfolio-item4.html
image: images/@stock/home-work-4.jpg
categories: Personal projects
works_right:
- title: Cannabis in Canada - Neuropsychiatry
link_to: portfolio-item5.html
image: images/@stock/home-work-5.jpg
categories: Poster
- title: Seal 'n Cook
link_to: portfolio-item6.html
image: images/@stock/home-work-6.jpg
categories: Copywriting
- title: Seal 'n Cook
link_to: portfolio-item7.html
image: images/@stock/home-work-7.jpg
categories: Product Photography
- title: Other creative endeavors
link_to: portfolio-item8.html
image: images/@stock/home-work-8.jpg
categories: Sculpture
---
<div class="full light-grey">
<div class="four spacing"></div>
<div class="section-title">
<div class="row">
<div class="medium-10 medium-centered columns">
<h1 class="wow slideInUp">Work</h1>
</div>
</div>
<div class="row">
<div class="medium-9 medium-centered columns">
<div class="header-quote">
<p>"A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away."</p>
</div>
</div>
</div>
</div>
</div>
<div class="full">
<div class="row">
<div class="large-6 columns">
<div class="gallery-left-section">
{% for work in page.works_left %}
<div class="work-wrapper">
<a href="{{work.link_to}}" class="work">
<img src="{{site.url}}/{{work.image}}" alt="">
<div class="info">
<h3>{{work.title}}</h3>
<p>{{work.categories}}</p>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
<div class="large-6 columns">
<div class="gallery-right-section">
{% for work in page.works_right %}
<div class="work-wrapper">
<a href="{{work.link_to}}" class="work">
<img src="{{site.url}}/{{work.image}}" alt="">
<div class="info">
<h3>{{work.title}}</h3>
<p>{{work.categories}}</p>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="spacing"></div>
</div>