-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
140 lines (137 loc) · 4.82 KB
/
index.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
---
layout: default
section_id: home
slides:
- layout: default
title: User experience design, research, curriculum co-creation
tagline:
background: images/green-zig-zagz.png
- layout: default
title: User experience design, research, curriculum co-creation
tagline:
background: images/blue-zig-zagz.png
works_left:
- title: Vida Verde Women's Cooperative
link_to: vida-verde-2.html
image: images/vv-user-research.png
categories: User Research, Codesign, User Experience Design
- title: DecisionLoop
link_to: decisionloop.html
image: images/decisionloop-screen4-crop.png
categories: User Experience Design
- title: CloudOn
link_to: cloudon.html
image: images/cloudon-phone-comments-screens6-crop.png
categories: User Experience Design
- title: "Using Virtual Identities in Computer Science Learning for Broadening Participation"
link_to: stem-c.html
image: images/stem-c-pilot-1.jpg
categories: Curriculum Design, Research
works_right:
- title: Technology for Social Justice Field Scan
link_to: t4sj.html
image: images/t4sj-orglist.png
categories: Research, Web Development
- title: Boston Civic Media, Metrics and Methods
link_to: bostoncivicmedia.html
image: images/bcm-1.png
categories: Event Planning, Print Design
- title: Is a Nigga a Citizen?
link_to: isaniggaacitizen.html
image: images/isaniggaacitizen-3.jpg
categories: Print
- title: DiscoTech Demystifying Prototyping
link_to: discotech.html
image: images/discotech-flyer.png
categories: Event planning, Print
---
<!-- <div class="full no-padding">
<div id="slides" class="fullscreen">
<div class="slides-container">
{% for slide in page.slides %}
<div class="slide" style="background-image: url({{site.url}}/{{slide.background}}); background-repeat: repeat; background-size:auto;">
<div class="slide-info">
<div class="row">
<div class="large-10 large-centered columns">
{% if slide.layout == 'default' %}
<div class="image-wrapper" style="background-image: url({{site.url}}/{{slide.image}});"></div>
<div class="two spacing"></div>
<h1>{{slide.title}}</h1>
<p>{{slide.tagline}}</p>
{% else %}
<div class="image-wrapper" style="background-image: url({{site.url}}/{{slide.image_top}});"></div>
<div class="image-wrapper arrows" style="background-image: url({{site.url}}/{{slide.image_bottom}});"></div>
<div class="three spacing"></div>
<h1>{{slide.title}}</h1>
{% endif %}
</div>
</div>
</div> -->
<!-- <img src="{{site.url}}/{{slide.background}}" alt=""> -->
<!-- </div>
{% endfor %}
</div>
<nav class="slides-navigation">
<a href="#" class="next"><i class="icon-arrows-slim-right"></i></a>
<a href="#" class="prev"><i class="icon-arrows-slim-left"></i></a>
</nav>
</div>
</div> -->
<div class="full centered-text light-grey">
<div class="section-title small">
<div class="row">
<!-- <div class="medium-10 medium-centered columns">
<div class="spacing"></div>
<h2>About Me</h2>
</div> -->
</div>
</div>
<div class="row">
<div class="large-10 large-centered columns">
<p class="big-text">
Maya Wagoner is a user experience designer, researcher, organizer, and curriculum co-creator, currently serving as a <a href="https://advocacy.mozilla.org/en-US/open-web-fellows/overview">Ford-Mozilla Open Web Fellow</a> at the <a href="https://www.bklynlibrary.org/">Brooklyn Public Library.</a>
</p>
</div>
</div>
</div>
<div class="full">
<div class="section-title">
<div class="row">
<div class="medium-10 medium-centered columns">
<h2>Projects</h2>
</div>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<div class="gallery-left-section">
{% for work in page.works_left %}
<div class="work-wrapper">
<a href="{{work.link_to}}" class="work">
<img src="{{site.url}}/{{work.image}}" alt="">
<div class="info">
<h3>{{work.title}}</h3>
<p>{{work.categories}}</p>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
<div class="large-6 columns">
<div class="gallery-right-section">
{% for work in page.works_right %}
<div class="work-wrapper">
<a href="{{work.link_to}}" class="work">
<img src="{{site.url}}/{{work.image}}" alt="">
<div class="info">
<h3>{{work.title}}</h3>
<p>{{work.categories}}</p>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>