-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
33 lines (33 loc) · 738 Bytes
/
Copy pathtemplate.html
File metadata and controls
33 lines (33 loc) · 738 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Michael Hanif Khan">
<title>$pagetitle$</title>
$if(css)$
<link rel="stylesheet" type="text/css" href="$css$">
$endif$
</head>
<body>
<a href="/blog.html" style="color: #ebdbb2;">Back</a>
<p id="title" style="margin-top: 1%; padding-top: 0px;">
$title$
</p>
$if(subtitle)$
<p id="subtitle">
$subtitle$
</p>
$endif$
$if(date)$
<p id="date">Last Updated: $date$</p>
$endif$
$if(abstract)$
<p style="margin-bottom: 0;"><b>Abstract</b></p>
$abstract$
$endif$
<br>
<hr class="solid">
$body$
</body>
</html>