21 lines
728 B
HTML
21 lines
728 B
HTML
{{ template "base.html" . }}
|
|
|
|
{{ define "PageContent" }}
|
|
<style>
|
|
div.placeholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 480px;
|
|
display: grid;
|
|
justify-content: center;
|
|
justify-items: center;
|
|
align-content: center;
|
|
gap: 32px;
|
|
}
|
|
</style>
|
|
<div class="placeholder" style="text-align: center;">
|
|
<img style="image-rendering: pixelated;" src="/public/banner_home.gif?v={{ .Version }}" alt="Lost Sprite">
|
|
<p>I intended to put something here, but I couldn't come up with anything....</p>
|
|
<p>So check out my <a href="/blog">blog</a>, <a href="https://git.panca.kz/">code</a> or <a href="https://stickers.panca.kz/">stickerboard</a>!</p>
|
|
</div>
|
|
{{ end }} |