templates/head.html
{{ define "head" }}
<!doctype html>
<html>
<head>
<style>
@keyframes lol {
from{
transform: rotate(0deg);
}
to {
transform: rotate(9000deg);
}
}
#header img {
animation: lol;
animation-duration: 500s;
animation-timing-function: ease;
animation-fill-mode: forwards;
animation-delay: 1s;
}
</style>
<link rel="stylesheet" href="/static/style.css" type="text/css">
<link rel='shortcut icon' href='/static/favicon.ico'>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>j3s.sh</title>
<link rel="alternate" title="Sitewide Atom feed" type="application/atom+xml" href="/feed.atom" />
</head>
{{ end }}