-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticles.html
More file actions
103 lines (94 loc) · 4.31 KB
/
articles.html
File metadata and controls
103 lines (94 loc) · 4.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- About -->
<title>Articles | intComp</title>
<meta name="description" content="Coding and computer science resources from the If Null True team.">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="resources/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="resources/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="194x194" href="resources/favicon/favicon-194x194.png">
<link rel="icon" type="image/png" sizes="192x192" href="resources/favicon/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="resources/favicon/favicon-16x16.png">
<link rel="manifest" href="resources/favicon/site.webmanifest">
<link rel="mask-icon" href="resources/favicon/safari-pinned-tab.svg" color="#e95e0c">
<link rel="shortcut icon" href="resources/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-TileImage" content="resources/favicon/mstile-144x144.png">
<meta name="msapplication-config" content="resources/favicon/browserconfig.xml">
<meta name="theme-color" content="#222e3f">
<!-- Stylesheets -->
<link rel="stylesheet" href="resources/stylesheets/css/main.css">
<link rel="stylesheet" href="resources/stylesheets/css/nav.css">
<link rel="stylesheet"
href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.6.0/build/styles/atom-one-dark.min.css">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://cdn.oggyp.com/fonts/CoreSansC/CoreSansC.css" rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0">
<!-- Third-Party Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.6.0/build/highlight.min.js"></script>
<!-- JavaScript files -->
<script src="resources/scripts/javascript/functions.js"></script>
<script src="resources/scripts/javascript/articles.js" defer></script>
</head>
<body>
<nav>
<a href="#main" id="skip-nav-aria" class="aria-only focusable">Skip to main content</a>
<ul>
<li>
<a href="/">
<img src="resources/images/coding-white128x128.png" alt="">
</a>
</li>
<li>
<a href="reference.html">
<span class="material-symbols-outlined" role="presentation">local_library</span>
Reference
</a>
</li>
<li class="current-page">
<span aria-label="Current Page: Articles">
<span class="material-symbols-outlined" role="presentation">article</span>
Articles
</a>
</span>
</ul>
</nav>
<main id="main">
<header>
<h1>
<span>Articles</span>
</h1>
<span class="subtitle">Here's a list of all of our articles!</span>
</header>
<section>
<ul id="article-previews">
<li id="article-previews-loading">
<a href="">
<div class="metadata">
<h2 class="title">Loading Articles...</h2>
<span class="date">1st of January, 1970</span>
</div>
<hr>
<div class="content">
<h2>Loading...</h2>
<p>The articles are still loading...</p>
</div>
</a>
</li>
</ul>
</section>
</main>
</body>
</html>