-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2023.html
170 lines (159 loc) · 8.68 KB
/
2023.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
<!DOCTYPE HTML>
<!--
Hyperspace by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Shift Creator Space</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css" />
</noscript>
</head>
<body class="is-preload">
<!-- Header -->
<header id="header" class="style3">
<a href="index.html" class="title">2023 Project Showcase</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<section id="main" class="wrapper">
<div class="inner">
<!-- Image -->
<section>
<div class="box alt">
<div class="row gtr-uniform">
<!-- write a script that duplicates the above based on a JSOn file full of elements-->
<script>
array = [
{
"name": "Ryan Foster",
"image": "images/2023/Foster.jpg",
"link": "https://medium.com/@rfost/hues-of-my-heritage-e9934785ba51"
},
{
"name": "Leon Maksin",
"image": "images/2023/Maksin.png",
"link": "https://medium.com/@lmaksin/super-scripts-robots-and-travel-apps-ab46d28c3c38"
},
{
"name": "Candace Jung",
"image": "images/2023/CJung.png",
"link": "https://medium.com/@candaceju/drawings-photography-and-self-discovery-312b97ff0d75"
},
{
"name": "Sunnina Chen",
"image": "images/2023/Chen.png",
"link": "https://medium.com/@sunnina_67904/rekindling-flames-of-passion-72494ca9397f"
},
{
"name": "Bridgit Jung",
"image": "images/2023/BJung.png",
"link": "https://medium.com/@bridgitjung/dearketto-handcrafted-jewelry-d981acf8a9bc"
},
{
"name": "Rohan Bafna",
"image": "images/2023/Bafna.jpg",
"link": "https://medium.com/@rbafna_53296/the-drone-that-could-not-yet-3d0946c306"
},
{
"name": "Jonah Ableman",
"image": "images/2023/Ableman.png",
"link": "https://medium.com/@jableman_44799/game-development-crochet-animation-augmented-reality-and-more-9d4468963986"
},
{
"name": "Zan Huang",
"image": "images/2023/Huang.png",
"link": "https://medium.com/@zanh/what-are-we-doing-4d537500fe41"
},
{
"name": "Amy Deng",
"image": "images/2023/none.jpg",
"link": "https://medium.com/@amydeng_46922/shift-2023-7c5d8bf16226"
},
{
"name": "Kevin Xu",
"image": "images/2023/Xu.png",
"link": "https://medium.com/@k3vn.xu/predicting-sunsets-with-the-weather-9612481a9d77"
},
{
"name": "Adena Cartsonis",
"image": "images/2023/Cartsonis.png",
"link": "https://medium.com/@acartson/managing-expectations-and-burnout-with-living-discovery-and-creation-510cd9290abb"
},
{
"name": "Grace Benjamin",
"image": "images/2023/Benjamin.jpg",
"link": "https://medium.com/@gbenj/digital-jaquared-weaving-to-create-totebags-7f77f824f688"
},
{
"name": "Katherine Lee",
"image": "images/2023/none.jpg",
"link": "https://medium.com/@kathlee1001/creative-whims-9b723b870a27"
},
{
"name": "William Kuchenbuch",
"image": "images/2023/Kuchenbuch.png",
"link": "https://medium.com/@willkuc/roommatefinder-73048c539e25"
},
{
"name": "Amrita Thirumalai",
"image": "images/2023/Thirumalai.jpg",
"link": "https://medium.com/@amritathi/stuffed-animals-and-more-7d49dfced6e?source=friends_link&sk=a819b68c8927c5b10e280cb1f5f2dde4"
},
{
"name": "Tyrus Yeo",
"image": "images/2023/Yeo.png",
"link": "https://medium.com/@tyrusyeo5/how-being-flakey-might-change-your-life-99803318633b"
}, {
"name": "Vijaya Kukutla",
"image": "images/2023/Kukutla.png",
"link": "https://medium.com/@vkukutla_70690/making-safety-feel-more-accessible-redesigning-tapride-a402ffde66d9"
}
]
array.forEach(element => {
document.write("<a class=\"col-4\" href=" + element.link + " target=\"blank\">");
document.write("<span class=\"image fit creator\" >");
document.write("<img src=\"" + element.image + "\" alt=\"\" max-height=350px height=\"auto\" width=\"auto\"/>");
document.write("<div class=\"middle\">");
document.write("<div class=\"text\">" + element.name + "</div>");
document.write("</div>");
document.write("</span>");
document.write("</a>");
});
</script>
</div>
</div>
</section>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer" class="wrapper style3-alt">
<div class="inner">
<ul class="menu">
<li>© Shift Creator Space. All rights reserved.</li>
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>