-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1112 lines (911 loc) · 46.2 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>
<title>Open Fuego</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="8YoxOU8e8W3kssghMPhs86LqbkrDBkHUEGiT85y_Iog" />
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"> </script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"> </script>
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="50">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Open Fuego</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#About">About</a></li>
<li><a href="#Start">Get Started</a></li>
<li><a href="#Everyday">Everyday</a></li>
<li><a href="#Thinking">Thinking</a></li>
<li><a href="#Portfolio">Portfolios</a></li>
</ul>
</div>
</div>
</nav>
<div class="hero-image">
<div class="hero-text">
<h1 style="font-size:70px;">Open Fuego</h1>
<p style="font-size:25px;">Why make a spark when you can light a fire?</p>
<a href="#About">
<button type="button" class="btn btn-default">Learn More</button>
</a>
</div>
</div>
<div id="About" class="block-quote-lg text-center">
<br><br>
<div class="row" style="height:60vh">
<div class="col-sm-12">
<br>
<br>
<br>
<br>
<h1>Everything we see or do on our phones and computers is wrapped in code. And yet, many of us don't understand the first thing about coding or even how the internet works.</h1>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<div class="parallax-1" id="img-1"></div>
<div class="container-fluid text-center">
<br>
<br>
<br>
<br>
<br>
<br>
<div class="row">
<h1><em>Open Fuego makes coding easy</em></h1>
<br>
<div class="block-quote-md text-center">
<h3>We use hidden comments in the code to guide you in your <em>making</em>. Communicate your message clearly and effectively.</h3>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="row">
<div class="col-lg-3 col-md-6 text-center">
<i class="fas fa-6x fa-copy text-primary mb-4"></i>
<br>
<br>
<p><b>use templates to build pages quickly</b></p>
</div>
<div class="col-lg-3 col-md-6 text-center">
<i class="fas fa-6x fa-edit text-primary mb-4"></i>
<br>
<br>
<p><b>build/alter pages based on design best practices</b></p>
</div>
<div class="col-lg-3 col-md-6 text-center">
<i class="fas fa-6x fa-users-cog text-primary mb-4"></i>
<br>
<br>
<p><b>scaffold your learning and transfer your skills</b></p>
</div>
<div class="col-lg-3 col-md-6 text-center">
<i class="fas fa-6x fa-laptop text-primary mb-4"></i>
<br>
<br>
<p><b>develop your code literacy</b></p>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<div id="Start" class="container-fluid bg-b">
<br>
<br>
<br>
<br>
<br>
<br>
<div class="row">
<div class="col-sm-4">
<h1>Just Getting Started?</h1>
<h3>Either of these two templates will guide you through all the basic skills needed to get coding.</h3>
<br>
<br>
</div>
<div class="col-sm-4 text-center">
<a class="modal-link" data-toggle="modal" href="#Modal1">
<div class="hover">
<img src="images/john.png" class="img-responsive text-center" width="100%" alt="Electrate Fuego Title Page" >
</div>
</a>
<h4>The Electrate Fuego helps you language the discourse communities to which you already belong</h4>
<a class="modal-link" data-toggle="modal" href="#Modal1">
<button type="button" class="btn btn-default">Get Started</button>
</a>
</div>
<div class="col-sm-4 text-center">
<a class="modal-link" data-toggle="modal" href="#Modal2">
<div class="hover">
<img src="images/Iam.png" class="img-responsive text-center" width="100%" alt="I am a project in becoming in title page." >
</div>
</a>
<h4>Introduce yourself, telling the story of how you got here and where you're going.</h4>
<a class="portfolio-link" data-toggle="modal" href="#Modal2">
<button type="button" class="btn btn-default">Get Started</button>
</a>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<div id="Everyday" class="container-fluid">
<br>
<br>
<br>
<br>
<br>
<br>
<div class="row">
<div class="col-sm-7">
<img src="images/fuego.png" class="img-responsive text-center" width="100%" alt="Open Fuego Webtext Generator Title Page">
</div>
<div class="col-sm-5 text-center">
<h1>Open Fuego Webtext Generator</h1>
<h4>The Everyday Coding Tool</h4>
<br>
<div class="text-left">
<h4>Great for making and sharing presentations! Design information using industry best practices. Packed with all of the coding snippets you need to make your message matter!</h4>
</div>
<br>
<br>
<div>
<a class="modal-link" data-toggle="modal" href="#Modal3">
<button type="button" class="btn btn-default">Ignition!</button>
</a>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<div id="Thinking" class="container-fluid text-center bg-b" style="">
<br>
<br>
<br>
<br>
<div class="row">
<div class="block-quote-lg text-center">
<h1>Open Fuego has developed into a range of coding tools designed to help individuals use code to think and communicate in everyday ways.
</h1>
</div>
</div>
<br>
<br>
<br>
<br>
<div class="row">
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal4">
<div class="hover">
<img src="images/elevator.png" class="img-responsive text-center" width="100%" alt="Elevator Pitch Title Page" >
</div>
</a>
<h4 style="text-align: center">Elevator Pitch Generator</h4>
<br>
<br>
<br>
<br>
<br>
</div>
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal"
href="#Modal5">
<div class="hover">
<img src="images/stasis.png" class="img-responsive text-center" width="100%" alt="Stasis Theory Title Page" >
</div>
</a>
<h4 style="text-align: center">Stasis Theory Machine</h4>
<br>
<br>
<br>
<br>
<br>
</div>
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal6">
<div class="hover">
<img src="images/nature.png" class="img-responsive text-center" width="100%" alt="Nature Study Title Page" >
</div>
</a>
<h4 style="text-align: center">My Nature Study</h4>
<br>
<br>
<br>
<br>
<br>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal8">
<div class="hover">
<img src="images/project.png" class="img-responsive text-center" width="100%" alt="Project Reflection Title Page">
</div>
</a>
<h4 style="text-align: center">Project/Internship/TA Reflection</h4>
<br>
<br>
<br>
<br>
<br>
</div>
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal9">
<div class="hover">
<img src="images/directedreading.png" class="img-responsive text-center" width="100%" alt="Image" >
</div>
</a>
<h4 style="text-align: center">Directed Reading</h4>
<br>
<br>
<br>
<br>
<br>
</div>
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal10">
<div class="hover">
<img src="images/trainingmanual.png" class="img-responsive text-center" width="100%" alt="Training Manual Title Page">
</div>
</a>
<h4 style="text-align: center">Training Manual</h4>
<br>
<br>
<br>
<br>
<br>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
</div>
<div id="Portfolio" class="container-fluid text-center">
<br><br>
<div class="block-quote-lg text-center">
<h1>These webtext generators have dedicated navigation designs. Use them to quickly build responsive portfolios and websites.</h1>
</div>
<br>
<br>
<br>
<br>
<div class="row">
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal13">
<div class="hover">
<img src="images/report.png" class="img-responsive text-center" width="100%" alt="Report Title Page" >
</div>
</a>
<h4 style="text-align: center">Report Navigation</h4>
<br>
<br>
<br>
<br>
<br>
</div>
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal14">
<div class="hover">
<img src="images/singlepage.png" class="img-responsive" width="100%" alt="Single Page Navigation Title Page" >
</div>
</a>
<h4 style="text-align: center">Single Page Navigation</h4>
<br>
<br>
<br>
<br>
<br>
</div>
<div class="col-sm-4">
<a class="modal-link" data-toggle="modal" href="#Modal15">
<div class="hover">
<img src="images/multipage.png" class="img-responsive" width="100%" alt="Multipage Title Page" >
</div>
</a>
<h4 style="text-align: center">Multipage Navigation</h4>
<br>
<br>
<br>
<br>
<br>
</div>
</div>
<br>
<br>
<br>
<br>
</div>
<br>
<br>
<footer>
<div class="container">
<div class="block-quote-lg text-center">
<p>Teaching Open Fuego <a class="Best Practices" data-toggle="modal" href="#Modal19">Best Practices</a> and <a class="FAQ" data-toggle="modal" href="#Modal20">FAQ</a></p>
<p>Have a minute? We'd like to learn about you and your experience using our tools: <a href="https://docs.google.com/forms/d/e/1FAIpQLSenZSrjl9eR6IWGgvG_ddgsJUh6poq4StOxv96pJDjHB_Kr8g/viewform?usp=sf_link">User Feedback</a></p>
<br>
<p></p>
</div>
<p>Made with <i class="fa fa-heart pulse"></i> at the University of Pittsburgh, 2020.</p>
</div>
</footer>
</body>
</html>
<!-- Modal 1-->
<div class="modal fade" id="Modal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Electrate Fuego</h2>
<p class="item-intro text-muted">Electracy Coding Tools</p>
<img class="img-responsive" src="images/john.png" style="width: 550px" alt="Electrate Fuego Title Page">
<p style="max-width:550px">Hello, maker! Welcome to the Electrate Fuego web design tutorial. I'm glad you found it – for this might be a real intersection on your way to becoming. You'll make a really cool web document that not only introduces you to the other people, but will help you process how different discourse communities in your life have contributed to your arrival in this space -virtual and actual - and also contribute to where you might be going.</p>
<p>Go to the <a href= "https://github.com/Open-Fuego/Electrate-Fuego">GitHub Repository</a></p>
<p><a href="https://open-fuego.github.io/Electrate-Fuego/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 2-->
<div class="modal fade" id="Modal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">I AM - A Project in Becoming</h2>
<p class="item-intro text-muted">A great tool for making introductions</p>
<img class="img-responsive" src="images/Iam.png" style="width: 550px" alt="I am a project in becoming Title Page">
<p style="max-width:550px">Using this tool, you'll use the questions of stasis theory to figure out where you stand and where you're going. You'll also learn the basics of reading through code, add/modify content, and gain a better understanding of computer science</p>
<p>Go to the <a href= "https://github.com/Open-Fuego/I-am-a-project-in-becoming">GitHub Repository</a></p>
<p><a href="https://open-fuego.github.io/I-am-a-project-in-becoming/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 3-->
<div class="modal fade" id="Modal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Open Fuego Webtext Generator</h2>
<p class="item-intro text-muted">The everyday coding tool!</p>
<img class="img-responsive" src="images/fuego.png" style="width: 550px" alt="Open Fuego Webtext Generator Title Page">
<p style="max-width:550px">Open Fuego Webtext Generator is designed to be fast and light. Add elements that will look good on any screen, whether you're trying to circulate a message of make a keynote visual aid. Add a QR code link to the project, and your audience will be able to easily take your message home in their pockets. Pretty cool, right?</p>
<p> Go to the <a href="https://github.com/Open-Fuego/open-fuego-webtext-generator">GitHub Repository</a>
<p><a href="https://open-fuego.github.io/open-fuego-webtext-generator/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 4-->
<div class="modal fade" id="Modal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Elevator Pitch Generator</h2>
<p class="item-intro text-muted">Did you know the Greeks invented the elevator?</p>
<img class="img-responsive" src="images/elevator.png" style="width: 550px" alt="Elevator Pitch Generator Title Page">
<p style="max-width:550px">It's true. The Greeks invented the elevator, and quickly realized the awkward communication that results when one is locked in a box with their interlocutor. Luckily, in addition to being great inventors, the Greeks were also skilled rhetoricians.</p>
<p style="max-width:550px"> Open this generator and follow the directions to utilize the available means of persuasion to concisely language exactly what you want to say. The result: an elevator pitch. <em>Ding!</em> - Doors Closing - How high do you want to go?"</p>
<p>Go to the <a href="https://github.com/Open-Fuego/elevator-pitch-generator">GitHub Repository</a>
<p><a href="https://open-fuego.github.io/elevator-pitch-generator">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 5-->
<div class="modal fade" id="Modal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Stasis Theory Machine</h2>
<p class="item-intro text-muted">The original global positioning tool</p>
<img class="img-responsive" src="images/stasis.png" style="width: 550px" alt="Stasis Generator Title Page">
<p style="max-width:550px">Most people would say the goal of stasis theory is a kind of stopping. But I would argue that we're actually figuring out how and why people are moving in different directions and different speeds in relation to one another. I like to use stasis theory to better understand this movement with the goal of addressing my own direction and speed, and possibly convincing others to do the same.</p>
<p style="max-width:550px">In this doc., you will work through the four questions of stasis: conjecture, definition, quality, and policy. This method is tried and true, 100% guaranteed to help you say something meaningful about almost anything. While the Greeks used it to help them explore questions and issues, the design can easily be adapted to other ends. </p>
<p>Go to the <a href= "https://github.com/Open-Fuego/stasis-theory-machine">GitHub Repository</a>
<p><a href="https://open-fuego.github.io/stasis-theory-machine/">Preview Demo</a></p>
<br>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 6-->
<div class="modal fade" id="Modal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">My Nature Study</h2>
<p class="item-intro text-muted">Embed in nature and learn to code our networked ecology</p>
<img class="img-responsive" src="images/nature.png" style="width: 550px" alt="Nature Study Title Page">
<p style="max-width:550px">We've adapted the holistic, nature-centered methods we witnessed in the field to create My Nature Study, a coding template offering students an opportunity to work with tools to construct meaning in their world. Through this project of languaging and communicating their relationship with the natural environment, students will learn essential computer science concepts and learn to read/edit .html and .css documents.</p>
<p><a href="https://sjquigley.github.io/mutimodal-nature-studies/">Go to My Nature Outing Project Page</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Modal</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 7-->
<div class="modal fade" id="Modal7" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Presentation Organizers</h2>
<p class="item-intro text-muted">Lean on the available means of persuasion to help you organize your message</p>
<img class="img-responsive" src="images/code.jpg" style="width: 550px" alt="Image of code">
<p style="max-width:550px">Lean on the available means of persuasion to help you organize your message</p>
<br>
<p>Coming Soon! <a href=""></a></p>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 8-->
<div class="modal fade" id="Modal8" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Project/Internship/TA Reflection</h2>
<p class="item-intro text-muted">Process and Package your Experience</p>
<img class="img-responsive" src="images/project.png" style="width: 550px" alt="Project Reflection Title Page">
<br>
<p style="max-width:550px">In this project, you will make a really cool web document that helps you process your learning experience, learn a little bit about coding, and strategically package the work you have accomplished in your project/internship/teaching assistantship.</p>
<p>Go to the <a href= "https://github.com/Open-Fuego/project-reflection">GitHub Repository</a></p>
<br>
<p><a href= "https://open-fuego.github.io/project-reflection/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 9-->
<div class="modal fade" id="Modal9" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Directed Reading</h2>
<p class="item-intro text-muted"></p>
<img class="img-responsive" src="images/directedreading.png" style="width: 550px" alt="Directed Reading Title Page">
<br>
<p style="max-width:550px">This Tool Helps Students think critically about their readings and connect ideas together.</p>
<p>Go to the <a href= "https://github.com/Open-Fuego/Directed-Reading">GitHub Repository</a></p>
<p><a href= "https://open-fuego.github.io/directed-reading/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 10-->
<div class="modal fade" id="Modal10" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Online Training Manual</h2>
<p class="item-intro text-muted">Training tool for a distributed workforce</p>
<img class="img-responsive" src="images/trainingmanual.png" style="width: 550px" alt="Training Manual Title Page">
<p style="max-width:550px">While workforces are becoming increasingly diversified, they are also becoming increasingly distributed across spaces. This means our student’s ability to effectively communicate across media with a diverse workforce will be of great importance in professional settings. Companies are increasingly turning to online training documents to teach policy and procedure for their field employees. These documents prove valuable in that they can be accessed at the user’s leisure, hold the user responsible for the content, and transfer liability from the company to the employee. From an education standpoint, online training documents serve an important tool for training employees.</p>
<p>Under Construction</p>
<!--
<p>Go to the <a href= "https://github.com/Open-Fuego/training-manual">GitHub Repository</a></p>
<p><a href= "https://open-fuego.github.io/training-manual/">Preview Demo</a></p>
<br>-->
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- EMPTY Modal 11-->
<div class="modal fade" id="Modal11" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Content</h2>
<p class="item-intro text-muted">Content</p>
<img class="img-responsive" src="images/.png" style="width: 550px" alt="">
<p style="max-width:550px">Content</p>
<p><a href= "">HERE</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- EMPTY Modal 12-->
<div class="modal fade" id="Modal12" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Content</h2>
<p class="item-intro text-muted">Content</p>
<img class="img-responsive" src="images/.png" style="width: 550px" alt="">
<p style="max-width:550px">Content</p>
<p><a href= "">HERE</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 13-->
<div class="modal fade" id="Modal13" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Report Navigation</h2>
<p class="item-intro text-muted">Document your work </p>
<img class="img-responsive" src="images/report.png" style="width: 550px" alt="Report Title Pages">
<p style="max-width:550px">Every project needs documentation. Use this template to explain your research or design project. Your audience will love the responsive design and helpful side navigation. Pull code snippets from the code repository to add a range of multimodal content.</p>
<p>Go to the <a href= "https://github.com/Open-Fuego/report-navigation">GitHub Repository</a></p>
<p><a href= "https://open-fuego.github.io/report-navigation/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 14-->
<div class="modal fade" id="Modal14" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Single Page Navigation</h2>
<p class="item-intro text-muted">A modern design that won't distract your audience</p>
<img class="img-responsive" src="images/singlepage.png" style="width: 550px" alt="Single Page Website">
<p style="max-width:550px">Build a single page website or portfolio using internal navigation control and responsive design. Showcase all of your content into one neat package.</p>
<p>Go to the <a href= "https://github.com/Open-Fuego/single-page-navigation">GitHub Repository</a></p>
<p><a href= "https://open-fuego.github.io/single-page-navigation/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Empty Modal 15-->
<div class="modal fade" id="Modal15" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Multipage Navigation</h2>
<p class="item-intro text-muted">Great for separating parts</p>
<img class="img-responsive" src="images/multipage.png" style="width: 550px" alt="MutiPage Website">
<p style="max-width:550px">Build a multi page website or portfolio with responsive navigation. This design divides and presents content separatly.</p>
<p>Go to the <a href= "https://github.com/Open-Fuego/multipage-navigation">GitHub Repository</a></p>
<p><a href= "https://open-fuego.github.io/multipage-navigation/">Preview Demo</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- EMPTY Modal 16-->
<div class="modal fade" id="Modal16" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Content</h2>
<p class="item-intro text-muted">Content</p>
<img class="img-responsive" src="images/.png" style="width: 550px" alt="">
<p style="max-width:550px">Content</p>
<p><a href= "">HERE</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- EMPTY Modal 17-->
<div class="modal fade" id="Modal17" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Content</h2>
<p class="item-intro text-muted">Content</p>
<img class="img-responsive" src="images/.png" style="width: 550px" alt="">
<p style="max-width:550px">Content</p>
<p><a href= "">HERE</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- EMPTY Modal 18-->
<div class="modal fade" id="Modal18" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="modal-body ">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="text-uppercase">Content</h2>
<p class="item-intro text-muted">Content</p>
<img class="img-responsive" src="images/.png" style="width: 550px" alt="">
<p style="max-width:550px">Content</p>
<p><a href= "">HERE</a></p>
<br>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 19-->
<div class="modal fade" id="Modal19" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">