Working content

This commit is contained in:
Ian Gulliver
2019-04-14 17:34:34 +00:00
parent 1d80233c57
commit de8cc95a70
12 changed files with 99 additions and 69 deletions

View File

@@ -0,0 +1 @@
<hr>

View File

@@ -0,0 +1,11 @@
<!--# if expr="$date" -->
<aside>
<h3><!--# echo var="date" --></h3>
</aside>
<!--# endif -->
<!--# if expr="$title" -->
<h2><!--# echo var="title" --></h3>
<!--# endif -->
<hr>

6
include/bottom.html Normal file
View File

@@ -0,0 +1,6 @@
<!--# include file="article-footer.html" -->
</article>
</main>
<!--# include file="page-footer.html" -->
</body>
</html>

View File

@@ -1,6 +0,0 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<style type="text/css">
<!--# include file="style.css" -->
</style>

3
include/page-footer.html Normal file
View File

@@ -0,0 +1,3 @@
<footer>
<h1>*</h1>
</footer>

9
include/page-head.html Normal file
View File

@@ -0,0 +1,9 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<style type="text/css">
<!--# include file="style.css" -->
</style>
<title><!--# echo var="title" default="where the flamingcow roams" --></title>
</head>

4
include/page-header.html Normal file
View File

@@ -0,0 +1,4 @@
<header>
<h1><a href="https://firestuff.org/">where the flamingcow roams</a></h1>
<hr>
</header>

View File

@@ -20,32 +20,51 @@ body {
a {
color: #d8d8d8;
font-weight: bold;
}
img {
border: none;
}
p {
margin-top: 0px;
margin-bottom: 25pt;
text-align: justify;
}
sup {
vertical-align: 0.3em;
font-size: 0.65em;
}
hr {
width: 100%;
border-top: 0.1px solid white;
}
pre {
background-color: black;
border: 1px solid white;
padding-left: 2ch;
padding-top: 1ch;
padding-bottom: 1ch;
header {
text-align: center;
}
footer {
text-align: center;
}
header hr {
width: 15em;
}
h1 {
font-size: 16px;
}
h1 a {
text-decoration: none;
}
h2 {
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
margin-block-start: 0.5em;
margin-block-end: 0.5em;
}
h3 {
font-size: 16px;
font-weight: normal;
}
.index ol {
list-style: none;
padding: 0;
}

9
include/top.html Normal file
View File

@@ -0,0 +1,9 @@
<!--# include file="page-html.html" -->
<!--# include file="page-head.html" -->
<body>
<!--# include file="page-header.html" -->
<main>
<article>
<!--# include file="article-header.html" -->