123 lines
2.7 KiB
HTML
123 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="$LANG">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="description" content='"$TITLE", écrit avec amour par $AUTHOR ❤' >
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>$TITLE</title>
|
|
<link href="atom.xml" type="application/atom+xml" rel="alternate" title="$GLOBAL_TITLE (all posts)" >
|
|
<link href="atom_en.xml" type="application/atom+xml" rel="alternate" title="$GLOBAL_TITLE (EN only)" >
|
|
<link href="atom_fr.xml" type="application/atom+xml" rel="alternate" title="$GLOBAL_TITLE (en français)" >
|
|
<link rel="shortcut icon" href="favicon.png" >
|
|
<link rel="canonical" href="$HTMLLINK">
|
|
<style>
|
|
:root {
|
|
--bg: #20283d;
|
|
--bg-alt: #426e5d;
|
|
--fg: #fbf7f3;
|
|
--fg-alt: #e5b083;
|
|
}
|
|
body {
|
|
margin:40px auto;
|
|
max-width:650px;
|
|
line-height:1.4;
|
|
font-family: Arial, sans-serif;
|
|
font-size:18px;
|
|
color:var(--fg);
|
|
background-color: var(--bg);
|
|
padding:0 10px;
|
|
}
|
|
h1 {
|
|
line-height:1.2;
|
|
text-align:center;
|
|
}
|
|
h2,h3 {
|
|
line-height:1.2;
|
|
border-bottom: 1px solid;
|
|
}
|
|
pre,blockquote,.signature{
|
|
background: var(--bg-alt);
|
|
padding: 1em;
|
|
}
|
|
blockquote,.signature{
|
|
font-style: italic;
|
|
margin: 2em 1em;
|
|
}
|
|
.signature{
|
|
text-align: center;
|
|
}
|
|
p,ul,ol {
|
|
list-style-type: circle;
|
|
}
|
|
a {
|
|
color:var(--fg-alt);
|
|
text-decoration:none;
|
|
padding:1em 0;
|
|
}
|
|
a:hover {
|
|
text-decoration:underline;
|
|
}
|
|
.center {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 60%;
|
|
}
|
|
.header{
|
|
margin: 1em 0;
|
|
display: block;
|
|
width:100%;
|
|
}
|
|
.subtitle {
|
|
text-align: center; font-style: italic;
|
|
}
|
|
.navbar{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
text-align: center;
|
|
font-variant: small-caps;
|
|
font-weight: bold;
|
|
}
|
|
.horizontal {
|
|
text-align: center;
|
|
padding:10px 40px;
|
|
}
|
|
.horizontal li {
|
|
display: inline-block;
|
|
margin: 0 0.5em;
|
|
}
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
footer p {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="navbar">
|
|
<a href="/index.html">Blog</a>
|
|
<a href="/software.html">Software</a>
|
|
<a href="/about.html">À Propos</a>
|
|
</div>
|
|
<article>
|
|
$IMAGE_HEADER
|
|
<h1>$TITLE</h1>
|
|
<p class="subtitle">$SUBTITLE<p>
|
|
$CONTENT
|
|
</article>
|
|
<footer>
|
|
<p>
|
|
CC0 - Take care ❤<br>
|
|
<a href="https://fediring.net/previous?host=webair.xyz">[<-]</a>
|
|
<a href="https://fediring.net/">[fediring]</a>
|
|
<a href="https://fediring.net/next?host=webair.xyz">[->]</a>
|
|
<br><a href="$GEMLINK">gemini</a>
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|