-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (52 loc) · 1.87 KB
/
index.html
File metadata and controls
58 lines (52 loc) · 1.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
---
layout: default
section: portfolio
is_top_level: true
is_landing_page: true
browser_title: "Dan Tilden: Portfolio"
title: "Dan Tilden: <span>UX Designer & Developer</span>"
#subtitle: "Ideally, you will not remember anything I design"
subsubtitle: "I'm a multidisciplinary designer/developer currently based in Tokyo, Japan, focused on building sensible
experiences
that won't get in your way."
---
<div class="cards central-col">
{% for project in site.data.projects %}
{% if project.section_blurb %}
<h2 class="blurb">
<i class="material-icons" aria-hidden="true">arrow_downward</i>
{{ project.section_blurb }}
</h2>
{% endif %}
<a id="project{{forloop.index}}" class="card project-card glass_effect {{ project.hover_color }}"
href="{{ project.url }}">
<div class="upper">
<div>
<h3>{{ project.name }}</h3>
<ul class="tags">
{% for tag in project.tags %}
<li>{{tag}}</li>
{% endfor %}
</ul>
</div>
<div class="project_icon" aria-hidden="true"><i class="material-icons">{{ project.icon }}</i></div>
</div>
<div class="lower">
<div class="proj_info">
<div class="desc">
{{ project.desc }}
</div>
<div class="extra_info">
{{ project.extra_info }}
</div>
</div>
<div class="thumb_outer">
<div class="thumb" style="background-image: url(images/banners/{{ project.banner_img }})"></div>
</div>
</div>
<!-- <div class="color_hot_track"></div> -->
<div class="bg_overlay" style="background-image: url(images/banners/blur/{{ project.banner_img }});">
</div>
</a>
{% endfor %}
</div>