-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathtemplate.html
More file actions
104 lines (94 loc) · 4.51 KB
/
template.html
File metadata and controls
104 lines (94 loc) · 4.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<link rel="preload" href="/style.css" as="style">
<link rel="preload" href="/shared.js" as="script">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<title>commonware > $title$</title>
<meta name="description" content="$description$">
<meta name="author" content="$author$">
<meta name="keywords" content="commonware, open source, common goods, software, internet, ownership, trust, blockchain, decentralization, crypto">
<meta property="og:url" content="$url$" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="commonware" />
<meta property="og:image" content="$image$" />
<meta property="og:title" content="$title$" />
<meta property="og:description" content="$description$" />
<meta property="article:author" content="$author$" />
<meta property="article:published_time" content="$published-time$" />
<meta property="article:modified_time" content="$modified-time$" />
<link rel="canonical" href="$url$" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="commonware.xyz" />
<meta property="twitter:url" content="$url$" />
<meta property="twitter:title" content="$title$" />
<meta property="twitter:description" content="$description$" />
<meta property="twitter:image" content="$image$" />
<meta property="twitter:site" content="@commonwarexyz" />
$if(author_twitter)$
<meta property="twitter:creator" content="$author_twitter$" />
$endif$
<link rel="stylesheet" type="text/css" href="/style.css">
$if(katex)$
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css">
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/contrib/auto-render.min.js" onload="renderMathInElement(document.body);"></script>
$endif$
</head>
<body>
<div id="logo-placeholder">
<div class="logo-line">
<span class="edge-logo-symbol">+</span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol">~</span>
<span class="edge-logo-symbol">*</span>
</div>
<div class="logo-line">
<span class="vertical-logo-symbol">|</span>
<span class="logo-text"> commonware </span>
<span class="vertical-logo-symbol"> </span>
</div>
<div class="logo-line">
<span class="edge-logo-symbol">*</span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">*</span>
<span class="horizontal-logo-symbol">-</span>
<span class="edge-logo-symbol">+</span>
</div>
</div>
<div class="content">
<h1>$title$</h1>
<div class="meta">
$if(author_twitter)$
<div class="author">By <a href="$author_twitter$">$author$</a></div>
$else$
<div class="author">By $author$</div>
$endif$
<div class="date">$date$</div>
</div>
$body$
<div id="footer-placeholder"></div>
<script src="/shared.js"></script>
</body>
</html>