-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcal.html
More file actions
22 lines (22 loc) · 701 Bytes
/
cal.html
File metadata and controls
22 lines (22 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="cal.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/atom-one-light.min.css">
<link href="prism.css" rel="stylesheet"/>
<title>Calendar</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
</head>
<body>
{{page}}
<script src="ASpace.js"></script>
<script>aSpace(document.getElementsByClassName('description'));</script>
<script>
hljs.initHighlightingOnLoad();
var prism = document.createElement('script');
prism.src = 'prism.js';
document.body.appendChild(prism);
</script>
</body>
</html>