-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
101 lines (83 loc) · 2.87 KB
/
work.html
File metadata and controls
101 lines (83 loc) · 2.87 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
---
layout: default
title: Work - minuscode
description: Our previous work list is ever growing. We nurture every project with a careful eye so that both our clients and us stand proud.
permalink: /work/index.html
---
<div class="masthead masthead-work">
<div class="wrapper">
<h1>Our previous work list</h1>
<p>never seems big enough</p>
<!--
<ul class="line-chart">
<li class="line-chart__item web"></li>
<li class="line-chart__item mob"></li>
<li class="line-chart__item ux"></li>
<li class="line-chart__item other"></li>
</ul>
-->
</div>
</div><!-- /masthead -->
<div class="content work shuffle">
<div class="work-header">
<a class="hidden-link" href="?showall">Featured work</a>
<ul class="categories">
<li><a href="#" class="icon-all active" data-category="all"></a></li>
<li><a href="#" class="icon-website" data-category="website"></a></li>
<!-- <li><a href="#" class="icon-facebook" data-category="facebook"></a></li> -->
<li><a href="#" class="icon-mobile" data-category="mobile"></a></li>
</ul>
</div>
{% assign count = 0 %}
{% assign projects = site.works | sample:8 %}
{% for post in projects %}
{% if post.hidden %}{% continue %}{% endif %}
{% unless post.category contains 'work' %}{% continue %}{% endunless %}
{% assign count = count | plus: 1 %}
{% assign mod = count | modulo: 2 %}
{% assign image_hash = post.image | first %}
{% if image_hash %}
{% assign image = image_hash | first %}
{% endif %}
<div class="work-wrap js-work-wrap" data-category="{{ post.tags | join:' '}}">
{% if image and mod != 0 %}
<div class="work-wrap__content work-wrap__image" style="background-image: url({{ image[1] }})"></div>
{% endif %}
<div class="work-wrap__content work-wrap__info">
<h1>{{ post.title }}</h1>
<h2>{{ post.subtitle }}</h2>
{{ post.content }}
<ul>
{% for el in post.links %}
<li><a href="{{ el.link }}" class="default-link default-link--green" target="_blank">{{ el.type }}</a></li>
{% endfor %}
</ul>
</div>
{% if image and mod == 0 %}
<div class="work-wrap__content work-wrap__image" style="background-image: url({{ image[1] }})"></div>
{% endif %}
</div>
{% endfor %}
<!--
<ul class="simple-list">
<li>
<h2>Web</h2>
<p><a href="#">salitre</a></p>
<p><a href="#">iogurteria do bairro</a></p>
</li>
<li>
<h2>App</h2>
<p><a href="#">App 1</a></p>
<p><a href="#">App 2</a></p>
<p><a href="#">App 3 buéda fixe</a></p>
</li>
<li>
<h2>UX</h2>
<p><a href="#">ux 2</a></p>
<p><a href="#">ux 3</a></p>
<p><a href="#">ux 213</a></p>
</li>
</ul>
-->
</div><!-- /work -->
{% include contact_us.html %}