her.esy.fun/templates/post.html

65 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>
2022-09-29 12:30:17 +00:00
<header>
2021-05-09 10:11:33 +00:00
<div id="logo">
2022-09-29 09:37:36 +00:00
<a href="/">
2022-09-29 12:30:17 +00:00
<div class="vis-hidden">Go to Home</div>
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 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>
2022-09-28 18:05:46 +00:00
</header>
2022-09-29 12:30:17 +00:00
<main id="content">
2022-09-29 09:25:56 +00:00
$if(toc)$<nav id="toc" role="doc-toc">$table-of-contents$</nav>$endif$
<article>
2021-04-27 18:28:46 +00:00
$body$
2022-09-29 09:25:56 +00:00
</article>
2022-09-28 18:05:46 +00:00
</main>
2022-09-29 12:30:17 +00:00
<footer id="postamble" class="status">
2021-05-06 08:54:28 +00:00
<div class="content">
2022-09-28 18:05:46 +00:00
<nav role="navigation">
2021-05-06 08:54:28 +00:00
<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>
2022-09-28 18:05:46 +00:00
</footer>
2021-05-06 08:54:28 +00:00
</body>
2021-04-27 12:34:29 +00:00
</html>