-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (34 loc) · 1.27 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
<title>IPFS Blog</title>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="cids.html">CIDs</a>
<a href="#" onclick="openModal()" class="right">Help the Rebels</a>
</nav>
<main id="main">
<div class="lds-hourglass" id="loading"> Loading...</div>
<ul id="articleList"></ul>
<div id="chooseHelpFileModal" class="modal">
<div class="modalContent">
<div id="modalRow1" class="modalRow modalRowTitle">Choose the sentence that describes you the most:</div>
<a href="article.html?cid=QmbinTR2UFHGBDmmAMUjSryaWnzGGBBuSsHbK9iye2UiXu" id="modalRow2" class="modalRow modalRowButton">"I like computers ... a little."</a>
<a href="article.html?cid=Qmd3rDcQhjRTZ7NWKueh9MXrmci18raPGBxrLTDRdw6Lg1"id="modalRow3" class="modalRow modalRowButton">"I like computers a LOT."</a>
</div>
</div>
</main>
<footer><h2>Footer</h2><p>Second Line.</p></footer>
<script type="text/javascript" src="meta.js"></script>
<script type="text/javascript" src="modal.js"></script>
<script type="text/javascript" src="main.js"></script>
<script>
loadMain();
</script>
</body>
</html>