-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
executable file
·123 lines (117 loc) · 2.8 KB
/
portfolio.html
File metadata and controls
executable file
·123 lines (117 loc) · 2.8 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
layout: default
title: Portfolio
section_id: portfolio
categories:
- name: Graphic Design
- name: Web Design
- name: Brand
- name: Development
- name: Print
works:
- image: work-1.jpg
title: Beautiful Girl
categories:
- name: Graphic Design
- image: work-2.jpg
title: Look at me
categories:
- name: Web Design
- name: Print
- image: work-3.jpg
title: Am I cute
categories:
- name: Brand
- image: work-4.jpg
title: Umbrella
categories:
- name: Development
- image: work-5.jpg
title: Canned Bros
categories:
- name: Print
- name: Brand
- image: work-6.jpg
title: Hale
categories:
- name: Web Design
- image: work-7.jpg
title: A beautiful day
categories:
- name: Web Design
- image: work-8.jpg
title: Flower book
categories:
- name: Graphic Design
- image: work-1.jpg
title: Beautiful Girl
categories:
- name: Development
- name: Print
- image: work-2.jpg
title: Look at me
categories:
- name: Brand
- image: work-3.jpg
title: Am I cute
categories:
- name: Web Design
- image: work-4.jpg
title: Umbrella
categories:
- name: Print
- image: work-5.jpg
title: Canned Bros
categories:
- name: Graphic Design
- image: work-6.jpg
title: Hale
categories:
- name: Development
- image: work-7.jpg
title: A beautiful day
categories:
- name: Print
---
<div class='full'>
<div class='row'>
<div class='special-title centered-text'>
<i class='icon-star'></i>
<h2>Portfolio</h2>
<p>Our best and featured works so far</p>
<p class='shortline'></p>
</div>
</div>
</div>
<div class='row'>
<div class='gallery-wrapper large-12 columns'>
<ul class='sub-nav' id='filter'>
<li class='current'>
<a data-cat='all' href='#'>All</a>
</li>
{% for category in page.categories %}
<li>
<a data-cat='{{ category.name | downcase | replace: ' ', '-' }}' href='#'>{{category.name}}</a>
</li>
{% endfor %}
</ul>
<div class='spacing'></div>
<ul class='gallery small-block-grid-2 medium-block-grid-3 large-block-grid-3'>
{% for work in page.works %}
<li class='{{ work.categories | map:"name" | join:"##" | downcase | replace:' ', '-' | replace:'##', ' '}}'>
<a>
<img src='{{site.url}}/images/{{work.image}}'>
<div class='overlay'>
<div class='thumb-info'>
<h3>{{work.title}}</h3>
<p>{{ work.categories | map:"name" | join:" & " }}</p>
</div>
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="three spacing"></div>
<div class="three spacing"></div>