-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost-template.html
More file actions
45 lines (35 loc) · 1.03 KB
/
post-template.html
File metadata and controls
45 lines (35 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="../style.css">
<script type="text/javascript" id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script> <!-- using MathJax -->
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
}
};
</script> <!-- adding $ $ delimiters as well as $$ $$ delimiters -->
</head>
<title>ada's blog - POST TEMPLATE</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<body>
<header> <!-- general website header -->
<a class="title">POST TEMPLATE</a>
<br>
<i>DATE</i>
</header>
<br>
<div class="post-body"> <!-- body of text -->
</div>
<br>
<footer>
<a href="../index.html" class="home-link">back to home</a>
<br>
<p style="font-size: 12px; color: #bbbbbb;">All posts are licensed under <a href="https://creativecommons.org/licenses/by-nc/4.0/">CC-by-NC 4.0</a>.</p>
</footer>
</body>
</html>