her.esy.fun/templates/post.html

64 lines
2.4 KiB
HTML
Raw Normal View History

2021-04-27 12:34:29 +00:00
<!DOCTYPE html>
<html lang="en">
2021-05-06 08:54:28 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>$title$</title>
<meta name="author" content="$author$">
<meta name="description" content="$description$">
<meta name="keywords" content="$keywords$">
<link rel="stylesheet" href="/css/y.css"/>
<link rel="alternate" type="application/rss+xml" href="/rss.xml" />
<link rel="icon" href="/favicon.ico">
2021-10-03 20:20:41 +00:00
<meta name="theme-color" media="(prefers-color-scheme: light)"
content=$if(lightbk)$"$lightbk$"$else$"#d84100"$endif$>
<meta name="theme-color" media="(prefers-color-scheme: dark)"
content=$if(darkbk)$"$darkbk$"$else$"#2E3440"$endif$>
2021-05-07 15:22:57 +00:00
$header-includes$
2021-05-06 08:54:28 +00:00
</head>
<body>
<div class="main">
2021-05-09 10:11:33 +00:00
<div id="logo">
<a href="/">
2021-05-25 19:30:03 +00:00
<svg width="5em" viewBox="0 0 64 64">
<circle cx="32" cy="32" r="30" stroke="#a3aec2" stroke-width="1" fill="#2E3440"></circle>
<circle cx="32" cy="32" r="12" stroke="#800" stroke-width="1" fill="#c20"></circle>
<circle cx="32" cy="32" r="5" stroke-width="1" stroke="#f60" fill="#fa0"></circle>
<ellipse cx="32" cy="14" rx="14" ry="8" stroke-width="0" fill="#FFF"></ellipse>
2021-05-09 10:11:33 +00:00
</svg>
</a>
</div>
2021-05-06 08:54:28 +00:00
<div id="preamble" class="status">
<div class="content">
<h1>$title$</h1>
<div class="meta">
<span class="yyydate">$date$</span> on
<a href="https://her.esy.fun">
<span class="author">$author$</span>'s blog</a>
</div>
<div class="abstract">
$description$
</div>
2021-04-27 12:34:29 +00:00
</div>
2021-05-06 08:54:28 +00:00
</div>
<div id="content">
2021-05-09 10:11:33 +00:00
$if(toc)$<div id="toc">$table-of-contents$</div>$endif$
2021-04-27 18:28:46 +00:00
$body$
2021-05-06 08:54:28 +00:00
</div>
<div id="postamble" class="status">
<div class="content">
<nav>
<a href="/index.html">Home</a> |
<a href="/slides.html">Slides</a> |
<a href="/about-me.html">About</a>
<span class="details"> (<a href="https://gitea.esy.fun/yogsototh">code</a>
<a href="https://espial.esy.fun/u:yogsototh">bookmarks</a>
<a href="https://espial.esy.fun/u:yogsototh/notes">notes</a>)</span> |
2021-05-24 13:40:47 +00:00
<a href="#logo">↑ Top ↑</a>
2021-05-06 08:54:28 +00:00
</nav>
2021-04-27 12:34:29 +00:00
</div>
2021-05-06 08:54:28 +00:00
</div>
</div>
</body>
2021-04-27 12:34:29 +00:00
</html>