-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.index.html
More file actions
38 lines (31 loc) · 1.2 KB
/
Copy pathtemplate.index.html
File metadata and controls
38 lines (31 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>$title$</title>
<link rel="stylesheet" href="/template.css">
<link rel="shortcut icon" href="/res/favicon.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="$title$">
<meta property="og:type" content="website">
<meta property="og:url" content="https://blog.mathewma3.in">
<meta property="og:image" content="/articles/images/index_og_image.png">
<meta property="og:description" content="$description$">
<meta property="og:site_name" content="blog.mathewma3.in">
<meta property="og:locale" content="en_GB" />
$for(keywords)$<meta property="og:tag" content="$keywords$">
$endfor$
</head>
<body>
<div class="main-content">
<nav>
<h1 class="sitename"><a href="https://blog.mathewma3.in">blog.mathewma3.in</a></h1>
</nav>
<h1 class="pagetitle">$title$</h1>
<hr>
$body$
</div>
<footer>
Hosted with ❤️ on Github
</footer>
</body>
</html>