This repository was archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1023 lines (966 loc) · 42.7 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="shortcut icon" type="image/x-icon" href="uploads/favicon.ico" />
<title>Home - DC Design Week 2018</title>
<meta
name="description"
content="DC Design Week is a celebration of creatives, thinkers, and makers in the DC metro area. Its a week packed with amazing speakers, events, and meetups. Join us!"
/>
<meta property="og:title" content="Home - DC Design Week 2018" />
<meta
property="og:description"
content="DC Design Week is a celebration of creatives, thinkers, and makers in the DC metro area. Its a week packed with amazing speakers, events, and meetups. Join us!"
/>
<link rel="canonical" href="https://2018.dcdesignweek.org" />
<meta property="og:url" content="https://2018.dcdesignweek.org" />
<meta property="og:site_name" content="DC Design Week 2018" />
<meta property="og:image" content="uploads/2018-OG-featuredimage.jpg" />
<meta property="og:type" content="article" />
<meta name="“twitter:card”" content="“summary_large_image”" />
<meta name="“twitter:site”" content="“@dcdesignweek”" />
<meta name="“twitter:creator”" content="“dcdesignweek”" />
<meta name="“twitter:title”" content="DC Design Week 2018 | Home" />
<meta
name="“twitter:description”"
content="DC Design Week is a celebration of creatives, thinkers, and makers in the DC metro area. Its a week packed with amazing speakers, events, and meetups. Join us!"
/>
<meta name=“twitter:image” content=uploads/2018-OG-featuredimage.jpg" />
<meta property="article:published_time" content="" />
<script type="application/ld+json"></script>
<!-- styles -->
<link rel="stylesheet" href="assets/css/base.css" />
<!-- scripts -->
<script type="text/javascript" src="assets/js/offside.min.js"></script>
<script type="text/javascript" src="assets/js/lazysizes.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
(i[r] =
i[r] ||
function () {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
"script",
"https://www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-84499644-1", "auto");
ga("send", "pageview");
</script>
</head>
<!-- offside menu -->
<nav id="mobile-menu" class="mobile-menu db dn-l bg-dcdw-secondary">
<ul class="mobile-menu__list list ma0 pl0 ma4">
<li class="mobile-menu__item list-none">
<a href="events/index.html" class="monospace ttu white pb3 db">Events</a>
</li>
<li class="mobile-menu__item list-none">
<a href="map/index.html" class="monospace ttu white pb3 db">Map</a>
</li>
<li class="mobile-menu__item list-none">
<a href="pop-up-shop/index.html" class="monospace ttu white pb3 db"
>Pop Up Shop</a
>
</li>
<li class="mobile-menu__item list-none">
<a href="about/index.html" class="monospace ttu white pb3 db">About</a>
</li>
<li class="mobile-menu__item list-none">
<a href="sponsors/index.html" class="monospace ttu white pb3 db">Sponsors</a>
</li>
<li class="mobile-menu__item list-none">
<a href="volunteer/index.html" class="monospace ttu white pb3 db">Volunteer</a>
</li>
</ul>
</nav>
<body>
<!-- wrapper for site content that is shifted when mobile menu is triggered -->
<div id="site-container" class="">
<header class="site-header bg-white pa3">
<nav class="flex flex-row items-center">
<div class="site-header__logo">
<a class="ma0" href="index.html">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="172"
height="48"
>
<defs>
<path id="a" d="M.071.07h38.485v32.578H.071z" />
<path id="c" d="M.075.067h7.364v47.84H.075z" />
</defs>
<g fill="none" fill-rule="evenodd">
<g transform="translate(133.488 7.654)">
<mask id="b" fill="#fff">
<use xlink:href="#a" />
</mask>
<path
fill="#297B76"
d="M38.429.29a.578.578 0 0 0-.454-.22h-6.733a.581.581 0 0 0-.573.478l-2.984 16.585L23.932.523a.583.583 0 0 0-.568-.453H16.56a.581.581 0 0 0-.567.45l-3.886 17.01L7.95.512A.581.581 0 0 0 7.385.07H.652a.587.587 0 0 0-.461.227.584.584 0 0 0-.1.504l8.42 31.416a.582.582 0 0 0 .56.431h5.881a.581.581 0 0 0 .565-.442l4.421-17.985 4.421 17.985a.581.581 0 0 0 .565.442h5.879a.581.581 0 0 0 .566-.452L38.54.78a.579.579 0 0 0-.112-.49"
mask="url(#b)"
/>
</g>
<path
fill="#297B76"
d="M124.553 24.012c0 5.212-3.511 8.854-8.538 8.854h-4.539V15.16h4.54c5.026 0 8.537 3.64 8.537 8.85m7.45 0c0-9.446-6.724-16.3-15.988-16.3h-11.411c-.321 0-.582.26-.582.58v31.444c0 .32.26.581.582.581h11.411c9.264 0 15.988-6.857 15.988-16.304"
/>
<g transform="translate(78.233 .026)">
<mask id="d" fill="#fff">
<use xlink:href="#c" />
</mask>
<path
fill="#297B76"
d="M6.857.067H.656c-.32 0-.581.26-.581.581v46.678c0 .32.26.581.581.581h6.201c.322 0 .582-.26.582-.581V.648c0-.32-.26-.581-.582-.581"
mask="url(#d)"
/>
</g>
<g fill="#297B76">
<path
d="M44.624 39.729c.114.028.223.066.332.103.189.063.378.125.587.168.062.01.126.015.23.02 1.092.2 2.093.296 3.104.296.071 0 .142-.007.277-.024.653-.015 1.284-.07 1.847-.162 3.78-.436 7.128-1.917 9.68-4.28a.584.584 0 0 0 .122-.695l-3.01-5.794a.585.585 0 0 0-.436-.308.565.565 0 0 0-.503.176c-2.237 2.365-4.982 3.622-7.992 3.635-4.221-.007-7.461-2.451-8.456-6.38-.23-.912-.338-1.696-.338-2.47 0-.766.105-1.54.329-2.435.982-3.952 4.225-6.41 8.52-6.414 2.956.01 5.701 1.267 7.937 3.632a.584.584 0 0 0 .939-.132l3.01-5.794a.584.584 0 0 0-.121-.695c-3.108-2.88-7.3-4.466-11.85-4.466-.973 0-1.973.097-3.097.297-.025 0-.17.016-.198.021-.2.04-.39.101-.578.165-.11.036-.22.074-.333.103-7.183 1.832-12.008 8.13-12.008 15.76 0 7.542 4.825 13.84 12.006 15.673M7.44 32.85V15.176h4.533c5.019 0 8.524 3.633 8.524 8.837s-3.505 8.837-8.524 8.837H7.44zM.58 40.293h11.392c9.252 0 15.967-6.846 15.967-16.28 0-9.434-6.715-16.28-15.967-16.28H.58A.581.581 0 0 0 0 8.314v31.398c0 .321.26.581.581.581z"
/>
</g>
</g>
</svg>
</a>
</div>
<div class="site-header__links flex-auto">
<ul class="list flex-auto ma0 pl0 dn db-l tr">
<li class="dib link">
<a href="events/index.html" class="btn btn--header-link">
Events
</a>
</li>
<li class="dib link">
<a href="map/index.html" class="btn btn--header-link">
Map
</a>
</li>
<li class="dib link">
<a href="pop-up-shop/index.html" class="btn btn--header-link">
Pop Up Shop
</a>
</li>
<li class="dib link">
<a href="about/index.html" class="btn btn--header-link">
About
</a>
</li>
<li class="dib link">
<a href="sponsors/index.html" class="btn btn--header-link">
Sponsors
</a>
</li>
<li class="dib link">
<a href="volunteer/index.html" class="btn btn--header-link">
Volunteer
</a>
</li>
</ul>
<div class="site-header__menu-button flex-auto fr db dn-l">
<button type="button" id="mobile-menu-trigger">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-menu"
>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
</div>
</div>
</nav>
</header>
<main class="page-home wysiwyg cf relative">
<!-- section 1: hero -->
<section
class="hero vh-50 vh-75-l flex bg-monte-carlo relative"
style="
background-image: url('uploads/pattern-faceTools.png');
background-size: contain;
background-position: center center;
"
>
<div class="flex-auto self-center relative" style="z-index: 100;">
<div class="mw8 mb4 center tc wysiwyg pa3">
<h1 class="white mb2" style="font-size: 48px !important;">
<a
class="white bb bw2 pb1"
href="https://www.instagram.com/explore/tags/dcdesignweek/"
target="_blank"
>#DCDesignWeek</a
>
2018 was a success!
</h1>
<h2 class="f3 white mb2" style="font-family: 'Work Sans';">
Tell us about your experience so we can keep improving.
</h2>
<a
href="https://goo.gl/forms/WZO7PamPyTLI9JOH3"
class="btn btn--secondary-solid white"
>Send Feedback</a
>
</div>
<!--
<div class="mw6 center tc wysiwyg pa3">
<h3 class="white mb2"></h3>
<a href="" class="btn btn--secondary-solid white"></a>
</div>
-->
</div>
<div
class="hero-overlay absolute top-0 right-0 bottom-0 left-0 bg-cloud"
style="opacity: 0.5;"
></div>
</section>
<!-- section 2: dc is design -->
<section class="dc-is-design pv5 mb5 mb6-l bg-mint cf relative">
<div class="mw8 center pa3">
<h1>Design is For All</h1>
<hr />
<div class="flex flex-row-l flex-wrap-reverse items-center mb3 mb0-l">
<div class="w-100 w-50-l">
<p>
Design is for thinkers and doers, listeners and seers, go-getters and
problem-solvers. It’s for walkers, bikers, drivers, and Metro riders.
It’s for writers and readers, game players and web creators, food lovers
and museum-goers. It’s for makers and appreciators, and it’s always up
for debaters.
</p>
</div>
<div class="w-100 w-50-l">
<img
class="lazyload blur-up v-mid"
data-src="uploads/dcdw-faces-group-01b.gif"
src="uploads/dcdw-faces-group-01b.gif"
alt="Group 1 of portrait illustrations showcasing the diversity of the DC Design Community"
/>
</div>
</div>
<div class="flex flex-row-l flex-wrap items-center mb3 mb0-l">
<div class="w-100 w-50-l">
<img
class="lazyload blur-up v-mid"
data-src="uploads/dcdw-faces-group-02.gif"
src="uploads/dcdw-faces-group-02.gif"
alt="Group 2 of portrait illustrations showcasing the diversity of the DC Design Community"
/>
</div>
<div class="w-100 w-50-l">
<p>
Design: it’s a people thing. And in the DMV, we’re home to some of the
smartest, coolest, realest, and greatest people around—not to mention
one of the most exciting and innovative design cultures in the world.
</p>
</div>
</div>
<div class="flex flex-row-l flex-wrap-reverse items-center mb3 mb0-l">
<div class="w-100 w-50-l">
<p>
That’s why, once again, we’re making a week of it all. And in 2018, we
have more to celebrate than ever before—more partners, more experts,
more formats, more venues, more incredible work. It’s DC Design Week: by
our city’s humans, for people like you.
</p>
</div>
<div class="w-100 w-50-l">
<img
class="lazyload blur-up v-mid"
data-src="uploads/dcdw-faces-group-03.gif"
src="uploads/dcdw-faces-group-03.gif"
alt="Group 3 of portrait illustrations showcasing the diversity of the DC Design Community"
/>
</div>
</div>
</div>
</section>
<script>
$(document).ready(function () {
var movementStrength = 7;
var height = movementStrength / $(window).height();
var width = movementStrength / $(window).width();
$(document).mousemove(function (e) {
$(".face").each(function () {
var y = $(this).offset().top;
var x = $(this).offset().left;
var pageX = e.pageX - x - $(window).width() / 2;
var pageY = e.pageY - y - $(window).height() / 3;
var newvalueX = width * pageX * 1 + 1;
var newvalueY = height * pageY * 1 + 1;
$(this).css(
"background-position",
// nose
"calc(40% + " +
newvalueX +
"px)" +
" calc(50% + " +
newvalueY +
"px / 6), " +
// mouth
"calc(40% + " +
newvalueX +
"px / -2)" +
" calc(50% + " +
newvalueY +
"px / -2), " +
// eyebrows
"calc(40% + " +
newvalueX +
"px / 2)" +
" calc(50% + " +
newvalueY +
"px * 2 - 6px), " +
// eyes
"calc(40% + " +
newvalueX +
"px * 2.5 )" +
" calc(50% + " +
newvalueY +
"px), " +
// highlights
"calc(40% + " +
newvalueX +
"px / 3)" +
" calc(50% + " +
newvalueY +
"px / 5), " +
// base
"calc(40% + " +
newvalueX +
"px / -2)" +
" calc(50% + " +
newvalueY +
"px)"
);
});
});
});
</script>
<!-- featured: events -->
<section class="events mb5 mb6-l cf relative">
<div class="mw8 center pa3">
<h2>Featured Events</h2>
<hr />
<ul class="list ma0 mb4 pa0 flex flex-column flex-row-l flex-wrap">
<div class="fl w-100 w-third-l pa3">
<a
class="border border--cloud shadow shadow-reverse--rose-bud db"
href="events/pop-up-shop-party.html"
>
<li class="list-none bg-white">
<div class="relative">
<div class="h4 overflow-hidden relative">
<!-- event sold out -->
<img src="uploads/event_popUpShopParty.jpg" />
</div>
</div>
<!-- event details -->
<div class="cloud bg-white pa3 flex flex-column">
<h3>Pop-Up Shop Block Party</h3>
<hr />
<div class="flex items-center mb2">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-calendar"
>
<rect
x="3"
y="4"
width="18"
height="18"
rx="2"
ry="2"
></rect>
<line x1="16" y1="2" x2="16" y2="6"></line>
<line x1="8" y1="2" x2="8" y2="6"></line>
<line x1="3" y1="10" x2="21" y2="10"></line></svg
></span>
</div>
<div class="flex-auto fw4">
Wednesday, October 24
</div>
</div>
<div class="flex items-center mb2">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-clock"
>
<circle cx="12" cy="12" r="10"></circle>
<polyline points="12 6 12 12 16 14"></polyline></svg
></span>
</div>
<div class="flex-auto fw4">
6pm - 10pm
</div>
</div>
<div class="flex items-center">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-map-pin"
>
<path
d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"
></path>
<circle cx="12" cy="10" r="3"></circle></svg
></span>
</div>
<div class="flex-auto fw4">
Cherry Blossom Creative
</div>
</div>
</div>
</li>
</a>
</div>
<div class="fl w-100 w-third-l pa3">
<a
class="border border--cloud shadow shadow-reverse--rose-bud db"
href="events/talking-about-feelings-with-adam-j-kurtz.html"
>
<li class="list-none bg-white">
<div class="relative">
<div class="h4 overflow-hidden relative">
<!-- event sold out -->
<img src="uploads/event_adamJK-e974f0.jpg" />
</div>
</div>
<!-- event details -->
<div class="cloud bg-white pa3 flex flex-column">
<h3>Talking About Feelings with Adam J. Kurtz</h3>
<hr />
<div class="flex items-center mb2">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-calendar"
>
<rect
x="3"
y="4"
width="18"
height="18"
rx="2"
ry="2"
></rect>
<line x1="16" y1="2" x2="16" y2="6"></line>
<line x1="8" y1="2" x2="8" y2="6"></line>
<line x1="3" y1="10" x2="21" y2="10"></line></svg
></span>
</div>
<div class="flex-auto fw4">
Thursday, October 25
</div>
</div>
<div class="flex items-center mb2">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-clock"
>
<circle cx="12" cy="12" r="10"></circle>
<polyline points="12 6 12 12 16 14"></polyline></svg
></span>
</div>
<div class="flex-auto fw4">
6:30pm - 8:30pm
</div>
</div>
<div class="flex items-center">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-map-pin"
>
<path
d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"
></path>
<circle cx="12" cy="10" r="3"></circle></svg
></span>
</div>
<div class="flex-auto fw4">
The Miracle Theater
</div>
</div>
</div>
</li>
</a>
</div>
<div class="fl w-100 w-third-l pa3">
<a
class="border border--cloud shadow shadow-reverse--rose-bud db"
href="events/dcdw-lounge-at-crafty-bastards.html"
>
<li class="list-none bg-white">
<div class="relative">
<div class="h4 overflow-hidden relative">
<!-- event sold out -->
<img src="uploads/event_craftyBastards-e6d369.jpg" />
</div>
</div>
<!-- event details -->
<div class="cloud bg-white pa3 flex flex-column">
<h3>DCDW Lounge @ Crafty Bastards</h3>
<hr />
<div class="flex items-center mb2">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-calendar"
>
<rect
x="3"
y="4"
width="18"
height="18"
rx="2"
ry="2"
></rect>
<line x1="16" y1="2" x2="16" y2="6"></line>
<line x1="8" y1="2" x2="8" y2="6"></line>
<line x1="3" y1="10" x2="21" y2="10"></line></svg
></span>
</div>
<div class="flex-auto fw4">
Saturday, October 27
</div>
</div>
<div class="flex items-center mb2">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-clock"
>
<circle cx="12" cy="12" r="10"></circle>
<polyline points="12 6 12 12 16 14"></polyline></svg
></span>
</div>
<div class="flex-auto fw4">
10am - 5pm
</div>
</div>
<div class="flex items-center">
<div class="mr2">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-map-pin"
>
<path
d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"
></path>
<circle cx="12" cy="10" r="3"></circle></svg
></span>
</div>
<div class="flex-auto fw4">
Yards Park
</div>
</div>
</div>
</li>
</a>
</div>
</ul>
<a
class="btn btn--primary-border db dib-ns ma0 tc tl-ns"
href="events/index.html"
>
Full Schedule
</a>
</div>
</section>
<!-- featured: sponsors -->
<section class="sponsors mb5 mb6-l cf relative">
<div class="mw8 center pa3">
<h2>Partners & Sponsors</h2>
<hr />
<p>
DC Design Week is produced by AIGA DC, a volunteer-run, 501(3)c nonprofit
organization, in concert with a consortium of local associations, meetup
groups and small businesses.
</p>
<p>
We rely on the generosity and goodness of others to make this week of
celebration a reality. Major thanks to the following partners and sponsors
for your support and commitment to the DC design community.
</p>
<p>We couldn’t do it without you!</p>
<ul class="list ma0 pa0 flex flex-column flex-row-ns flex-wrap">
<li class="list-none w-100 w-50-m w-25-l mb3 mb0-ns pa3-ns">
<a href="http://maclaboratory.com/" class="sponsor--url">
<img
class="lazyload blur-up v-mid"
data-src="uploads/macLab.jpg"
src="uploads/macLab.jpg"
alt=""
/>
</a>
</li>
<li class="list-none w-100 w-50-m w-25-l mb3 mb0-ns pa3-ns">
<a href="https://aquentstudios.com/" class="sponsor--url">
<img
class="lazyload blur-up v-mid"
data-src="uploads/aquent.jpg"
src="uploads/aquent.jpg"
alt=""
/>
</a>
</li>
<li class="list-none w-100 w-50-m w-25-l mb3 mb0-ns pa3-ns">
<a href="https://www.threespot.com/" class="sponsor--url">
<img
class="lazyload blur-up v-mid"
data-src="uploads/threespot.jpg"
src="uploads/threespot.jpg"
alt=""
/>
</a>
</li>
</ul>
<a
class="btn btn--primary-border db dib-ns ma0 tc tl-ns"
href="sponsors/index.html"
>
Learn More
</a>
</div>
</section>
</main>
<footer class="site-footer cloud bg-mindaro relative">
<section class="bg-mint">
<div class="mw7 center pv5 pa3 tc wysiwyg">
<h2 class="ma0 mb1 f4 f3-ns lh-copy tc">
<p>
Made with
<span class="made-in-dc-heart relative dib h3 w2"
><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
<path
fill="#202653"
d="M414.9 24C361.8 24 312 65.7 288 89.3 264 65.7 214.2 24 161.1 24 70.3 24 16 76.9 16 165.5c0 72.6 66.8 133.3 69.2 135.4l187 180.8c8.8 8.5 22.8 8.5 31.6 0l186.7-180.2c2.7-2.7 69.5-63.5 69.5-136C560 76.9 505.7 24 414.9 24z"
></path>
</svg>
</span>
in DC
</p>
</h2>
<p>
Built by 100% volunteer power, we’re constantly working to make this site
better for you. If you see something, say something.
</p>
<p>
<a
href="https://github.com/AIGAdc/DCDW"
target="_blank"
class="dim dib mt3 white h3 w3"
><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512">
<path
fill="#202653"
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
></path></svg
></a>
</p>
</div>
</section>
<section class="bg-dcdw-primary wysiwyg">
<div class="mw7 center pv5 ph3 tc white">
<h2></h2>
<p>
Stay up to date of progress through email updates or by following us on
social media!
</p>
<div class="mailchimp-form">
<!-- mailchimp sign up -->
<link
href="//cdn-images.mailchimp.com/embedcode/classic-10_7.css"
rel="stylesheet"
type="text/css"
/>
<div id="mc_embed_signup">
<form
action="//aigadc.us5.list-manage.com/subscribe/post?u=a1d74e0d7217ad0690c35dc75&id=f7171a068d"
method="post"
id="mc-embedded-subscribe-form"
name="mc-embedded-subscribe-form"
class="validate"
target="_blank"
novalidate
>
<div id="mc_embed_signup_scroll" class="tc">
<div class="mw7 center cf mb3">
<div class="fl w-100 w-50-l pa2 tl">
<label class="db dib-l mb2 f6 w-100 white" for="mce-EMAIL"
>Email Address <span class="asterisk white">*</span></label
>
<input
type="email"
value=""
name="EMAIL"
placeholder="Email"
class="required email cloud pa3 br-none w-100"
id="mce-EMAIL"
/>
</div>
<div class="fl w-100 w-50-l pa2 tl">
<label class="w-100 db dib-l mb2 f6 white" for="mce-NAME"
>First Name
</label>
<input
type="text"
value=""
name="NAME"
placeholder="Name"
class="required cloud pa3 br-none w-100"
id="mce-NAME"
/>
</div>
<div id="mce-responses" class="clear">
<div
class="response"
id="mce-error-response"
style="display: none;"
></div>
<div
class="response"
id="mce-success-response"
style="display: none;"
></div>
</div>
</div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true">
<input
type="text"
name="b_a1d74e0d7217ad0690c35dc75_f7171a068d"
tabindex="-1"
value=""
/>
</div>
<div class="clear">
<input
type="submit"
value="Subscribe"
name="subscribe"
id="mc-embedded-subscribe"
class="button button--mailchimp pt3"
/>
</div>
<div class="indicates-required tc f7 pt2 white">
<span class="asterisk white">*</span> indicates required
</div>
</div>
</form>
</div>
</div>
<script
type="text/javascript"
src="//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js"
></script>
<script type="text/javascript">
(function ($) {
window.fnames = new Array();
window.ftypes = new Array();
fnames[1] = "FNAME";
ftypes[1] = "text";
fnames[0] = "EMAIL";
ftypes[0] = "email";
})(jQuery);
var $mcj = jQuery.noConflict(true);
</script>
</div>
</section>
<section class="bg-dcdw-primary flex flex-column flex-row-l items-center pa3">
<div class="w-100 w-third-l tc tl-l">
<a
href="mailto:designweek@dc.aiga.org"
target="_top"
class="ma0 f6 f5-ns white dim"
>
designweek@dc.aiga.org
</a>
</div>
<div class="w-100 w-third-l pv3 pv0-l tc">
<ul class="list ma0 pl0">
<li class="dib dim link">
<a href="https://twitter.com/dcdesignweek" class="ph2 v-mid white"
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
stroke="none"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-twitter"
>
<path
d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
></path></svg
></a>
</li>
<li class="dib dim link">
<a href="https://www.instagram.com/dcdesignweek/" class="ph2 v-mid white"
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-instagram"
>
<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
<line x1="17.5" y1="6.5" x2="17.5" y2="6.5"></line></svg
></a>
</li>
<li class="dib dim link">
<a href="https://www.facebook.com/dcdesignweek/" class="ph2 v-mid white"
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
stroke="none"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-facebook"
>
<path
d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
></path></svg
></a>
</li>
</ul>
</div>