-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.article.html
More file actions
53 lines (45 loc) · 1.9 KB
/
Copy pathtemplate.article.html
File metadata and controls
53 lines (45 loc) · 1.9 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
<!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="article">
<meta property="og:url" content="/article/{{{filename_without_ext}}}.html">
<meta property="og:image" content="/articles/images/{{{filename_without_ext}}}/og_image.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:description" content="$description$">
<meta property="og:site_name" content="blog.mathewma3.in">
<meta property="og:locale" content="en_GB" />
<meta property="article:published_time" content="$date-meta$">
<meta property="article:author" content="$author$">
$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>
<p>
<i>Updated:</i> <b>$date$</b> <br>
<i>Author:</i> <b>$author$</b>
<div class="taglist">
$for(keywords)$<div class="tag">$keywords$</div>
$endfor$
</div>
</p>
<hr>
$body$
</div>
<footer>
Hosted with ❤️ on Github
</footer>
</body>
</html>