23 lines
703 B
HTML
23 lines
703 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body>
|
|
<header class="header">
|
|
<section class="head container">
|
|
<h1 class="title">{{ site.title }}</h1>
|
|
<h4>Eat
|
|
<a href="https://en.wikipedia.org/wiki/Polenta">
|
|
polenta</a> and do not counter-aim!</h4>
|
|
</section>
|
|
{% include header.html %}
|
|
</header>
|
|
<main class="container">
|
|
{{ content }}
|
|
</main>
|
|
{% include footer.html %}
|
|
<script>
|
|
var easter_egg = new Konami();
|
|
easter_egg.load("https://www.youtube.com/watch?v=URTcCh6QVwM");
|
|
</script>
|
|
</body>
|
|
</html>
|