-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.txt
38 lines (38 loc) · 1.64 KB
/
article.txt
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>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#FFFFFF"/>
<link href="/styles/universal.css" rel="stylesheet">
<link href="/styles/article.css" rel="stylesheet">
<link href="/styles/whostyles/whostyle-v1.css" rel="stylesheet">
<link href="/styles/whostyles/whostyle-v1.css" rel="whostyle">
<link href="/webmention" rel="webmention">
</head>
<body>
<div id="sidebar">
<a class="nostyle" href="/">
<div class="flip-container" ontouchstart="this.classList.toggle('hover');">
<div class="flipper">
<div class="front">
<img class="profilepic" id="backprofilepic" src="/profile.jpg" alt="profile pic of Jacob Hall"/>
</div>
<div class="back">
<span>🏠</span>
</div>
</div>
</div>
<h5>⬅️ Jacob Hall's weblog</h5>
</a>
</div>
<div id="contentbox">
@(if article-tags "<article class=\"e-content\">" "")
@(if insert-title (string-append "<h2>" title "</h2>") "")
@content
@(if article-tags "</article>" "")
@(if post-id (string-append (likes-query post-id) "<h2>Comments</h2><p>You can leave a comment here via webmention! Note that I moderate webmentions manually, so it may take a few days to appear.</p>" (build-comments post-id)) "")
</div>
</body>
</html>