-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathportfolio.html
More file actions
60 lines (58 loc) · 2.34 KB
/
portfolio.html
File metadata and controls
60 lines (58 loc) · 2.34 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
---
layout: default
---
<div class="main-banner section">
<div class="highlight"></div>
<div class="content">
<div class="container">
<h1>the <span class="green">exhibit</span></h1>
<h2><span class="green">an explanation</span> of my free time</h2>
</div>
</div>
</div>
<div class="content section margin">
<div class="container exhibits">
{% for post in site.posts %}
{% if post.layout == null %}
<div class="exhibit">
{% if post.website == null or post.offline %}
<div class="image-wrap">
<img src="{{ post.image }}" alt="{{ post.title }}" title="{{ post.title }}" />
</div>
{% else %}
<a class="image-wrap" href="{{ post.website }}">
{% if post.no_shadow %}
<img src="{{ post.image }}" alt="{{ post.title }}" title="{{ post.title }}"/>
{% else %}
<img src="{{ post.image }}" alt="{{ post.title }}" title="{{ post.title }}" class="shadow" />
{% endif %}
</a>
{% endif %}
<div class="info">
<h2>{{ post.title }}</h2>
{% if post.website != null %}
{% if post.offline %}
<span class="website offline">{{ post.website }} <em>(offline)</em></span>
{% else %}
<a class="website" href="{{ post.website }}">{{ post.website }}</a>
{% endif %}
{% endif %}
<span class="date">{{ post.date | date: "%B %Y" }}</span>
{{ post.content }}
<h3>Tech Used</h3>
<p class="tech-used">{{ post.tech }}</p>
<h3><span class="orange">Designer</span> vs <span class="green">Coder</span></h3>
<div class="part">
<div class="designer p{{ post.designer }}"></div>
<div class="coder p{{ post.coder }}"></div>
</div>
</div>
<div class="clear"></div>
</div>
{% if forloop.rindex0 > 0 %}
<div class="divider"></div>
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>