-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathindex.html
1334 lines (1220 loc) · 69 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">
<title>FOSSASIA Open Design Weeks 2012 | Asia's Open Design Event in Vietnam</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="FOSSASIA Open Design Weeks Vietnam">
<meta name="keywords" content="Open Design Weeks, FOSSASIA Summit,FOSS, Free and Open Source Software,Vietnam, Asia">
<meta name="author" content="FOSSASIA">
<meta property="og:title" content="Open Design Weeks" />
<meta property="og:type" content="website" />
<meta property="og:image" content="" />
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@fossasiasg">
<meta name="twitter:title" content="FOSSASIA Open Design Weeks 2012">
<meta name="twitter:description" content="FOSSASIA Open Design Weeks and Summit 2012 Vietnam">
<meta name="twitter:creator" content="@fossasiasg">
<meta name="twitter:image" content="">
<link rel="shortcut icon" href="fossasia.ico" type="image/x-icon" />
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flexslider.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/elegant-icons.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"
media="all" />
<link href="css/pe-icon-7-stroke.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/theme-lava.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,300' rel='stylesheet' type='text/css'>
<script src="js/google-analytics.js"></script>
</head>
<body class="no-loader">
<div class="loader">
<div class="strip-holder">
<div class="strip-1"></div>
<div class="strip-2"></div>
<div class="strip-3"></div>
</div>
</div>
<a id="top"></a>
<nav class="overlay-nav">
<div class="container">
<div class="row">
<div class="col-md-2">
<a target="_self" href="https://fossasia.org">
<img alt="FOSSASIA Summit" class="logo logo-light" src="img/fossasia-long.png">
<img alt="FOSSASIA" class="logo logo-dark" src="img/fossasia-dark.png">
</a>
</div>
<!-- Navbar Begins -->
<div class="col-md-10 text-right">
<ul class="menu">
<li>
<a target="default" class="inner-link" href="#top">Home</a>
</li>
<li>
<a target="_self" class="inner-link" href="#schedule">Schedule</a>
</li>
<li>
<a target="_self" class="inner-link" href="#exhibition">Exhibition</a>
</li>
<li>
<a target="_self" class="inner-link" href="#sponsors">Sponsors</a>
</li>
<li>
<a target="_self" href="https://blog.fossasia.org">Blog</a>
</li>
<li class="has-dropdown">
<a href="https://events.fossasia.org">FOSSASIA Events</a>
<ul class="nav-dropdown">
<!--whenever you add/remove an option, change the style="min-height:500px" by +- 25px-->
<li>
<a target="_self" href="https://labs.fossasia.org">FOSSASIA Labs</a>
</li>
<li>
<a target="_self" href="https://unesco.sciencehack.asia">UNESCO Hackathon</a>
</li>
<li>
<a target="_self" href="https://2018.fossasia.org">FOSSASIA Summit 2018</a>
</li>
<li>
<a target="_self" href="https://2017.fossasia.org">FOSSASIA Summit 2017</a>
</li>
<li>
<a target="_self" href="https://2016.fossasia.org">FOSSASIA Summit 2016</a>
</li>
<li>
<a target="_self" href="https://2015.fossasia.org">FOSSASIA Summit 2015</a>
</li>
<li>
<a target="_self" href="https://2014.fossasia.org">FOSSASIA Summit 2014</a>
</li>
<li>
<a target="_self" href="https://2012.fossasia.org">FOSSASIA Summit 2012</a>
</li>
<li>
<a target="_self" href="https://2011.fossasia.org">FOSSASIA Summit 2011</a>
</li>
<li>
<a target="_self" href="https://2010.fossasia.org">FOSSASIA Summit 2010</a>
</li>
<li>
<a target="_self" href="https://coc.fossasia.org">Code of Conduct</a>
</li>
</ul>
</li>
<li class="social-link hidden-md hidden-sm hidden-xs">
<a target="_self" href="https://twitter.com/fossasia">
<i class="icon social_twitter"></i>
</a>
</li>
<li class="social-link hidden-md hidden-sm hidden-xs">
<a target="_self" href="https://facebook.com/fossasia">
<i class="icon social_facebook"></i>
</a>
</li>
<li class="social-link hidden-md hidden-sm hidden-xs">
<a target="_self" href="https://github.com/fossasia">
<i class="fa fa-github fa-lg"></i>
</a>
</li>
<li class="social-link hidden-md hidden-sm hidden-xs">
<a target="_self" href="https://in.linkedin.com/company/fossasia">
<i class="icon social_linkedin"></i>
</a>
</li>
</ul>
<div class="sidebar-menu-toggle">
<i class="icon icon_menu"></i>
</div>
<div class="mobile-menu-toggle">
<i class="icon icon_menu"></i>
</div>
<!-- Navbar Ends -->
</div>
</div>
</div>
<div class="bottom-border"></div>
<!-- Burger Button Side Bar Begins-->
<div class="sidebar-menu">
<img alt="Logo" class="logo" src="img/fossasia-long.png">
<div class="bottom-border"></div>
<div class="widget">
<ul class="menu">
<li>
<a class="inner-link" href="#top" target="_self">Home</a>
</li>
<li>
<a class="inner-link" href="#schedule" target="_self">Schedule</a>
</li>
<li>
<a href="https://blog.fossasia.org" target="_self">Blog</a>
</li>
<li>
<a class="inner-link" href="https://fossasia.org/#subscribe" target="_self">Subscribe</a>
</li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li>
<a href="http://twitter.com/fossasia" target="_self">
<i class="icon social_twitter"></i>
</a>
</li>
<li>
<a href="http://facebook.com/fossasia" target="_self">
<i class="icon social_facebook"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCQprMsG-raCIMlBudm20iLQ" target="_self">
<i class="icon social_youtube icon-large"></i>
</a>
</li>
<li>
<a href="https://www.flickr.com/photos/fossasia/" target="_self">
<i class="icon social_flickr"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/explore/tags/fossasia/" target="_self">
<i class="icon social_instagram"></i>
</a>
</li>
<li>
<a href="https://github.com/fossasia" target="_self">
<i class="fa fa-github fa-lg"></i>
</a>
</li>
<li>
<a href="https://plus.google.com/108920596016838318216" target="default">
<i class="icon fa fa-google-plus"></i>
</a>
</li>
<li>
<a target="default" href="https://in.linkedin.com/company/fossasia">
<i class="icon social_linkedin"></i>
</a>
</li>
</ul>
</div>
<!-- Burger Button Side Bar Ends-->
<div class="copy-text-box">
<div class="copy-text-bottom">
<span>© Copyright 2009-2018 Creative Commons By License, FOSSASIA</span>
</div>
</div>
</div>
</nav>
<div class="main-container">
<!-- Hero Slider -->
<section class="hero-slider">
<ul class="slides">
<li class="video-header">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="FOSSASIA" src="img/OpenSourceDesign.jpg">
</div>
<div class="video-wrapper">
<video autoplay="" muted="" loop="">
<source src="" type="video/webm" />
<source src="" type="video/mp4" />
<source src="" type="video/ogg" />
</video>
</div>
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-sm-10 col-sm-offset-1 text-center col-md-10">
<img alt="logo" class="logo" src="img/fossasia-squarewhite-path.png">
<span class="uppercase text-white">FOSSASIA Open Design Weeks 2012</span>
<h1 class="large-h1 text-white">
<span>LibreGraphics and Open Source Design Gathering in the Mekong Delta</span>
</h1>
<a href="#exhibition" target="_self" class="btn inner-link">Exhibition</a>
<a target="_self" href="#schedule" class="btn btn-hollow inner-link">Schedule</a>
</div>
</div>
</div>
</li>
</ul>
</section>
<a id="intro" class="in-page-link"></a>
<!-- Color Blocks -->
<section class="color-blocks">
<div class="color-block block-left col-md-6 col-sm-12"></div>
<div class="color-block block-right col-md-6 col-sm-12"></div>
<div class="container">
<div class="row">
<a href="#exhibition" class="block-content inner-link col-sm-12 col-md-6" target="_self">
<div class="col-md-4 col-sm-4 text-center">
<i class="icon pe-7s-id icon-large"></i>
</div>
<div class="col-md-8 col-sm-8">
<h1>Visit the Exhibition</h1>
<p class="lead">
Meet Open Source artists and designers!
</p>
</div>
</a>
<a href="#schedule" class="block-content inner-link col-sm-12 col-md-6" target="_self">
<div class="col-md-4 col-sm-4 text-center">
<i class="icon pe-7s-like2 icon-large"></i>
</div>
<div class="col-md-8 col-sm-8">
<h1>Check out the schedule</h1>
<p class="lead">
Workshops and talks are taking place at different places in the Mekong-Delta in Ho Chi
Minh city and Can Tho.
</p>
</div>
</a>
</div>
</div>
</section>
<a id="keynotes" class="in-page-link"></a>
<!-- Designers' Section -->
<section class="speakers duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Featured Designers</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12 speaker-outer">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Pierre Marchand" src="img/PierreMarchand.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://www.oep-h.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://twitter.com/pierre_marc">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/pierremarchand">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description Felipe">
<h2>Pierre Marchand</h2>
<span class="sub">Scribus</span>
<p>Pierre refuses labels: he is not a programmer, nor cartographer or artist. Or maybe
he is
all at once? In the last few years, Pierre contributed to the development of major
Free
Software projects such as the Scribus desktop publishing software. He is
projectleader
of FontMatrix, a font management system initiated in 2007. He works on the duo
Fonzie-Nancy,
a scan-to-font application that allows a font based on several "drawings" by nature
and
recently LiteralDraw, an application that allows the exploration of the relation
between
drawing and code.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 speaker-outer">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Alexandre Leray" src="img/AlexandreLeray.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://www.stdin.fr">
<i class="icon fa fa-external-link"></i>
</a>
<!-- <a target="default" href="https://twitter.com/">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/in//">
<i class="icon social_linkedin"></i>
</a> -->
<a target="default" href="https://github.com/aleray">
<i class="icon fa fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Alexandre Leray</h2>
<span class="sub">Open Source Publishing</span>
<p>The Unix(-like) operating system standard streams, allowing commands to be chained
together
to produce original programs. It shows our interest for programming, for the
GNU/Linux
operating system and Free software in general. But moreover it reflects our
interest
for language, and how the latter is a tension between existing standards and new
meanings.
We've been trained as classical graphic designers in the Valence school of Fine
ArtsFR
from 2004 to 2006, where we developed a strong interest in media and writing
theory.
In 2009, we graduated from the MA Media Design course of the Piet Zwart Institute
in
RotterdamNL. We strengthen our research and theory practice along developing our
programming
skills to apply them to graphic design.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 speaker-outer">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Stéphanie Vilayphiou" src="img/StephanieVilayphiou.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://www.stdin.fr">
<i class="icon fa fa-external-link"></i>
</a>
<!-- <a target="default" href="https://twitter.com/">
<i class="icon social_twitter"></i>
</a>
<a target="default" href="https://www.linkedin.com/">
<i class="icon social_linkedin"></i>
</a> -->
<a target="default" href="https://github.com/latsami">
<i class="icon fa fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Stéphanie Vilayphiou</h2>
<span class="sub">Open Source Publishing</span>
<p>Unix(-like) operating system standard streams, allowing commands to be chained
together to
produce original programs. It shows our interest for programming, for the GNU/Linux
operating
system and Free software in general. But moreover it reflects our interest for
language,
and how the latter is a tension between existing standards and new meanings. We've
been
trained as classical graphic designers in the Valence school of Fine ArtsFR from
2004
to 2006, where we developed a strong interest in media and writing theory. In 2009,
we
graduated from the MA Media Design course of the Piet Zwart Institute in
RotterdamNL.
We strengthen our research and theory practice along developing our programming
skills
to apply them to graphic design.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 speaker-outer">
<div class="speaker-with-bio">
<div class="speaker">
<div class="image-holder">
<img class="background-image" alt="Pierre Huyghebaert" src="img/PierreHuyghebaert.jpg">
<div class="hover-state text-center preserve3d">
<div class="social-links vertical-align">
<a target="default" href="http://www.speculoos.com">
<i class="icon fa fa-external-link"></i>
</a>
<a target="default" href="https://www.linkedin.com/in/pierrehuyghebaert">
<i class="icon social_linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="speaker-description">
<h2>Pierre Huyghebaert</h2>
<span class="sub">Head of Digital Technology at Vietnam Press Holdings</span>
<p> Pierre Huyghebaert studied visual communication, typography and animation. In
twenty years,
he developed several practices around graphic design: co-founder of the type design
label
Hammerfonts, free-lancer and art director in various studios, co-founder of the
studio
Mind The Gap in Beirut (Lebanon) in 1993 with Karl Bassil, working in duo with the
illustrator/photographer/cartoon
publisher Vincent Fortemps mainly for the Belgian cultural world. After founding
Normal,
a non-profit association, he currently drives his own studio Speculoos alongside
with
the book designer Alexia de Visscher. They share Speculoos as a way to express
their
common conceptual processes and their interest for the ready- made. They see it as
a
structure dedicated to the development of specialized but eclectic projects in such
fields
as web interface, cartography, typographical creation, schematic illustration,
software
development management and book design. Since 2003, Pierre also teaches book design
and
complex visualization projects at the Digital Arts section of La Cambre art school
in
Brussels. He collaborates with visual artists, including Honoré d’O, Patrick
Corillon,
Vincent Meessen.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="schedule" class="in-page-link"></a>
<!-- Schedule Section -->
<section class="schedule">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-6">
<h1>OpenDesignWeeks, April, 2-10, Ho Chi Minh City
</h1>
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Monday, April 2</span>
<span class="title">
Visit of university in IICMC
</span>
</div>
<div class="schedule-text">
<p>8:00AM-5:00PM Presentation and Introduction of software tools for designers</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Tuesday, April 3</span>
<span class="title">
Workshop sessions at TMA solution
</span>
</div>
<div class="schedule-text">
<p>8:00AM-5:00PM Workshops Sessions at TMA Solution in Quang trung Software City</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Wednesday, April 4</span>
<span class="title">
Workshop sessions / Visit to designer labs and companies
</span>
</div>
<div class="schedule-text">
<p>8:00AM-5:00PM Workshops with students and designer labs and companies visit in
FPT arena</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Thursday, April 5</span>
<span class="title">
Exhibition preparation
</span>
</div>
<div class="schedule-text">
<p>8:00AM-5:00PM Exhibition preparation at Lam Design Studio HCM</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Friday, April 6</span>
<span class="title">
Set up and opening of Open design Exhibition
</span>
</div>
<div class="schedule-text">
<p>10:00AM-5:00PM Set up opening of Open design Exhibition with local partners at
Trung
Nguyen Cafe</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Saturday, April 7</span>
<span class="title">
Designers Preparation
</span>
</div>
<div class="schedule-text">
<p>10:00 AM Designers Preparation for second week</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Sunday, April 8</span>
<span class="title">
Mekong Excursion and arrival in Cantho City
</span>
</div>
<div class="schedule-text">
<p> 7:00AM- 7:00PM Excursion and gathering material "Between Folk Art and
Industrial production"
in Mekong and arrival in Cantho </p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-6">
<h1>Open Design Weeks, April 9-15, 2012, Can Tho City</h1>
<ul class="schedule-overview">
<li>
<div class="schedule-title">
<span class="time">Monday, April 9</span>
<span class="title">Opening with VIP guests</span>
</div>
<div class="schedule-text">
<p>9:00 AM Opening</p>
<p>1:00 PM Opening</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Tuesday, April 10</span>
<span class="title">Workshops : Font Design Workshops and discussions</span>
</div>
<div class="schedule-text">
<p>9:00AM-12:00PM and 1:30PM-5:00PM Libre Graphics and Open Source Design Workshops
and Sessions</p>
<p>9:00AM-5:00PM Libre Graphics and Open Source Design Workshops and Sessions</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Wednesday, April 11</span>
<span class="title">
Boat tour, visit and Preparation for 2nd Workshops Workshops and discussions
</span>
</div>
<div class="schedule-text">
<p>6:00AM-10:00AM Mekong floating market boat tour, crocodile island and cantho
museum visit.
<br> 11:AM-6:00PM OSP gathers and co-works with local designers for preparation
of 2nd
Workshop</p>
<p>9:00AM-5:00PM Libre Graphics and Open Source Design Workshops and Sessions</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Thursday, April 12</span>
<span class="title">
Workshop : Collaborative Publication Workshops and discussions
</span>
</div>
<div class="schedule-text">
<p>9:00AM-12:00 PM and 1:30AM-5:00PM Workshop( Day 1 ) : Collaborative Publication</p>
<p>9:00AM-5:00PM Libre Graphics and Open Source Design Workshops and Sessions</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Friday, April 13</span>
<span class="title">
Workshop : Collaborative Publication Workshops and discussions
</span>
</div>
<div class="schedule-text">
<p>9:00AM-12:00 PM and 1:30AM-5:00PM Workshop( Day 2 ) : Collaborative Publication</p>
<p>9:00AM-5:00PM Libre Graphics and Open Source Design Workshops and Sessions</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Saturday, April 14</span>
<span class="title">
Design Camp and Open Design Dinner Workshops and discussions
</span>
</div>
<div class="schedule-text">
<p>9:00AM-4:00PM Design Camp Cantho: Public presentation of design work, ideas and
software
<br> 7:00 PM Open Design Dinner: Good Bye Mekong Delta</p>
<p>9:00AM-5:00PM Libre Graphics and Open Source Design Workshops and Sessions</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Sunday, April 15</span>
<span class="title">
OPS Travels Back Workshops and discussions
</span>
</div>
<div class="schedule-text">
<p>8:00AM OPS Travels Back to Europe</p>
<p>9:00AM-5:00PM Libre Graphics and Open Source Design Workshops and Sessions
</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
<li>
<div class="schedule-title">
<span class="time">Friday, April 6, 8:00PM</span>
<span class="title">Exhibition Opening</span>
</div>
<div class="schedule-text">
<p>Opening of the Open Design Exhibition featuring free artworks from designers
across the
globe. Libre Graphics Artworks including Free Fonts, Posters, Comics and Books
on
display at district 1 in Saigon (Ho Chi Minh City) Open Source Design
Paintings,
Inkscape Art, Map art and Libre Art books at FOSSASIA Open Design Exhibition in
Saigon.
Location: Trung Nguyen Cafe, 19B Pham Ngoc Thach, Dist. 1, HCMC, Web:
www.trungnguyen.com.vn</p>
</div>
<div class="marker-pin">
<div class="top"></div>
<div class="middle"></div>
<div class="bottom"></div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<a id="exhibition" class="in-page-link"></a>
<!-- Events Section -->
<section class="image-with-text testimonials preserve-3d">
<div class="go-left side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="About Image" src="img/opendesignexhibition.jpg">
</div>
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Meet Artists and Designers at the Exhibition</h1>
<p class="lead">
The Open Design Weeks Exhibition takes place at the Saigon Art Cafe in Ho Chi Minh
city. Afterwards the exhibition will be
moved to Hotel Xoai in Can Tho permanently.</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<a id="OpenSourceDesign" class="in-page-link"></a>
<section class="image-with-text testimonials preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<div class="testimonials-slider">
<ul class="slides">
<li>
<h1>Open Source Publishing</h1>
<p class="lead">
OSP (Open Source Publishing) is an interdisciplinary and international collective based
in Brussels, Belgium that uses only
Free, Libre and Open Source Software (F/LOSS). Since 2006, OSP tests the possibilities
and realities of doing design, illustration, cartography and typography using a wide
range of F/LOSS tools. We realise that modifying and expanding the tools we are working
with, while engaging deeper with the communities that develop them, change both our
practice and the designs we are creating.
</p>
<a href="http://osp.kitchen" class="btn" target="_self">Website</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="go-right side-image col-md-6 col-sm-4">
<div class="background-image-holder">
<img class="background-image" alt="About Image" src="img/OpenSourcePublishing-Vietnam.jpg">
</div>
</div>
</section>
<a id="gallery" class="in-page-link"></a>
<section class="contained-gallery">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-6">
<div class="lightbox-gallery">
<ul>
<li>
<a href="img/OpenDesign-Participants.jpg" data-lightbox="true" data-title="FOSSASIA Summit">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/OpenDesign-Participants.jpg">
</div>
</a>
</li>
<li>
<a href="img/OpenDesignWeeksAsiaSaigon.jpg" data-lightbox="true" data-title="FOSSASIA Summit">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/OpenDesignWeeksAsiaSaigon.jpg">
</div>
</a>
</li>
<li>
<a href="img/OpenSourceDesignPosters.jpg" data-lightbox="true" data-title="FOSSASIA Summit">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/OpenSourceDesignPosters.jpg">
</div>
</a>
</li>
<li>
<a href="img/OpenSourceDesign-Dinner.jpg" data-lightbox="true" data-title="FOSSASIA Summit">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/OpenSourceDesign-Dinner.jpg">
</div>
</a>
</li>
<li>
<a href="img/OpenSourceDesign-FemaleParticipants.jpg" data-lightbox="true" data-title="FOSSASIA Summite">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/OpenSourceDesign-FemaleParticipants.jpg">
</div>
</a>
</li>
<li>
<a href="img/OpenSourceDesign-Workshop-Participants.jpg" data-lightbox="true" data-title="FOSSASIA Summit">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/OpenSourceDesign-Workshop-Participants.jpg">
</div>
</a>
</li>
<li>
<a href="img/2opendesignevent3.jpg" data-lightbox="true" data-title="FOSSASIA Summit">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/opendesignevent3.jpg">
</div>
</a>
</li>
<li>
<a href="img/OpenSourceDesign-QA.jpg" data-lightbox="true" data-title="FOSSASIA Summit">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/OpenSourceDesign-QA.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-5 col-sm-6">
<h1>Memories of Open Design Weeks</h1>
<p class="lead">
The Open Design Weeks in the Mekong Delta brought together designers and software developers from
East and West. Hundreds
of students participated in workshops about Libre Graphics tools such as Inkscape, Gimp and
Scribus.
</p>
<a href="./tickets/" class="btn" target="_self">Get Tickets</a>
<!-- <a target="_self" href="./tracks.html" class="btn btn-hollow">Check the Schedule</a> -->
</div>
</div>
</div>
</section>
<section class="strip-divider primary-overlay">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="About Image" src="img/OpenDesignWeeksAsiaSaigon.jpg">
</div>
<div class="video-wrapper">
<video autoplay="" muted="" loop="">
<source src="" type="video/webm">
<source src="" type="video/mp4">
<source src="" type="video/ogg">
</video>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1 class="text-white">Want to meet Open Source designers? Join the annual FOSSASIA Summit!
<a href="https://events.fossasia.org" class="inner-link" target="_self">Visit our event overview
page.</a>
</h1>
</div>
</div>
</div>
</section>