+1
.githashenv
+1
.githashenv
···
1
+
RESHASH=fefe6a8
+1
.gitignore
+1
.gitignore
···
1
+
.githashenv
+1
docker-compose.yml
+1
docker-compose.yml
+5
githash.sh
+5
githash.sh
+7
-2
site/assets/styles/main.css
+7
-2
site/assets/styles/main.css
···
53
53
h1,h2,h3,h4 {
54
54
font-family: 'Raleway', sans-serif;
55
55
color: #330099;
56
-
margin: 0 auto 0 auto;
56
+
margin: auto;
57
57
text-transform: uppercase;
58
58
text-align: center;
59
59
font-weight: 200;
···
76
76
.highlight {
77
77
background: #9999ff;
78
78
color: #fff;
79
-
display: inline;
80
79
}
81
80
82
81
.desc::before {
···
101
100
a:hover.highlight, a:hover.highlight::selection {
102
101
background: #746fd4;
103
102
}
103
+
104
+
.githashtag {
105
+
padding-right: .3rem;
106
+
font-size: 1.3rem;
107
+
vertical-align: middle;
108
+
}
-30
site/docs.html
-30
site/docs.html
···
1
-
<!DOCTYPE html>
2
-
<html lang="en">
3
-
4
-
<head>
5
-
<meta charset="UTF-8">
6
-
7
-
<link rel="icon" type="image/x-icon" href="139.png">
8
-
<link rel="stylesheet" href="main.css">
9
-
10
-
<title>girl on the moon :: documentation</title>
11
-
12
-
</head>
13
-
14
-
<body>
15
-
16
-
<article>
17
-
<p><span class="highlight">documentation</span></p>
18
-
<ul>
19
-
<li><a href="https://stash.4-walls.net/selfhostdw/" class="highlight">self hosting dreamwidth with docker</a><br>
20
-
<span class="desc">how to deploy a production instance of the <a href="https://github.com/dreamwidth/dreamwidth/">dreamwidth</a> code in docker</span></li>
21
-
<li><a href="https://stash.4-walls.net/irc1/" class="highlight">hosting soju + gamja with docker</a><br>
22
-
<span class="desc">how to deploy the IRC gamja web client & soju bouncer software in docker</span></li>
23
-
<li><a href="https://superlove.sayitditto.net/works/338" class="highlight">OTW-archive paperclip to active storage</a><br>
24
-
<span class="desc">now obsolete and superseded by upstream doing their own migration, but notable because i did it first</span></li>
25
-
</ul>
26
-
</article>
27
-
28
-
</body>
29
-
30
-
</html>
+31
site/docs.php
+31
site/docs.php
···
1
+
<?php
2
+
3
+
include "httpheaders.php";
4
+
5
+
?>
6
+
7
+
<!DOCTYPE html>
8
+
<html lang="en">
9
+
10
+
<?php include "head.php" ?>
11
+
12
+
<body>
13
+
14
+
<main>
15
+
<header>
16
+
<h1 class="highlight">documentation</h1>
17
+
</header>
18
+
19
+
<ul>
20
+
<li><a href="https://stash.4-walls.net/selfhostdw/" class="highlight">self hosting dreamwidth with docker</a><br>
21
+
<span class="desc">how to deploy a production instance of the <a href="https://github.com/dreamwidth/dreamwidth/">dreamwidth</a> code in docker</span></li>
22
+
<li><a href="https://stash.4-walls.net/irc1/" class="highlight">hosting soju + gamja with docker</a><br>
23
+
<span class="desc">how to deploy the IRC gamja web client & soju bouncer software in docker</span></li>
24
+
<li><a href="https://superlove.sayitditto.net/works/338" class="highlight">OTW-archive paperclip to active storage</a><br>
25
+
<span class="desc">now obsolete and superseded by upstream doing their own migration, but notable because i did it first</span></li>
26
+
</ul>
27
+
</main>
28
+
29
+
</body>
30
+
31
+
</html>