-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage_projects.html
98 lines (92 loc) · 2.63 KB
/
page_projects.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
93
94
95
---
layout: category
title: Projects
ogtitle: Projects - Samantha Zhang
permalink: /projects/
desc: A few selected case studies to show how I find scalable solutions to complicated design problems.
---
<div class="column column--trio--two">
<p class="caption zeta category-name" id="alexa">Sr. UX Designer at Alexa Knowledge</p>
<ul class="list">
{% for post in site.categories.alexa %}
<li>
<h3>
<a class="no-underline no-color" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<a class="no-underline" href="{{ site.baseurl }}{{ post.url }}">→</a>
</h3>
<p>
<a class="no-underline no-color" href="{{ site.baseurl }}{{post.url}}">{{ post.desc }}</a>
</p>
<p>
{% if post.tags %}
{% for tag in post.tags %}
{% if tag != post.tags.last %}
<span class="caption">{{ tag }},</span>
{% else %}
<span class="caption">{{ tag }}</span>
{% endif %}
{% endfor %}
{% endif %}
</p>
</li>
{% endfor %}
</ul>
<hr>
<p class="caption zeta category-name" id="graphiq">Design Lead at Graphiq Inc.</p>
<ul class="list">
{% for post in site.categories.graphiq %}
<li>
<h3>
<a class="no-underline no-color" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<a class="no-underline" href="{{ site.baseurl }}{{ post.url }}">→</a>
</h3>
<p>
<a class="no-underline no-color" href="{{ site.baseurl }}{{post.url}}">{{ post.desc }}</a>
</p>
<p>
{% if post.tags %}
{% for tag in post.tags %}
{% if tag != post.tags.last %}
<span class="caption">{{ tag }},</span>
{% else %}
<span class="caption">{{ tag }}</span>
{% endif %}
{% endfor %}
{% endif %}
</p>
</li>
{% endfor %}
</ul>
<hr>
<p class="caption zeta category-name" id="side-projects">Side Projects</p>
<ul class="list">
{% for post in site.categories.side %}
<li>
<h3>
<a class="no-underline no-color" href="{{ site.baseurl }}{{ post.url }}" {% if post.redirect_to %} target="_blank" {% endif %}>{{ post.title }}</a>
<a class="no-underline" href="{{ site.baseurl }}{{ post.url }}" {% if post.redirect_to %} target="_blank" {% endif %}>
{% if post.redirect_to %}
↗
{% else %}
→
{% endif%}
</a>
</h3>
<p>
<a class="no-underline no-color" href="{{ site.baseurl }}{{post.url}}">{{ post.desc }}</a>
</p>
{% if post.tags %}
<p>
{% for tag in post.tags %}
{% if tag != post.tags.last %}
<span class="caption">{{ tag }},</span>
{% else %}
<span class="caption">{{ tag }}</span>
{% endif %}
{% endfor %}
</p>
{% endif %}
</li>
{% endfor %}
</ul>
</div>