2021-07-09 01:59:28 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
<title>{{ page.title }}</title>
|
|
|
|
<meta name="author" content="Ellpeck">
|
2021-07-09 03:56:01 +02:00
|
|
|
<meta name="description" content="{{ page.summary }}">
|
2021-07-09 01:59:28 +02:00
|
|
|
<meta name="keywords" content="Ellpeck, Actually Additions, Rock Bottom, Programming, Minecraft, Game Development, Nature's Aura, C#, Java, Blog, Tutorial, Foe Frenzy">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/style/style.css">
|
|
|
|
<link rel="icon" href="/favicon.ico">
|
|
|
|
|
2021-09-24 19:06:34 +02:00
|
|
|
<meta property="og:title" content="{{ page.title }}">
|
2021-07-09 03:56:01 +02:00
|
|
|
<meta property="og:description" content="{{ page.summary }}">
|
2021-07-09 01:59:28 +02:00
|
|
|
<meta property="og:image" content="https://ellpeck.de/res/logoSmall.png">
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<meta name="twitter:site" content="@Ellpeck">
|
|
|
|
<meta name="twitter:creator" content="@Ellpeck">
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
|
|
|
<script src="/scripts/util.js"></script>
|
|
|
|
<script src="/scripts/main.js"></script>
|
|
|
|
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XC0W9LJMCJ"></script>
|
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
|
|
|
|
function gtag() {
|
|
|
|
dataLayer.push(arguments);
|
|
|
|
}
|
|
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-XC0W9LJMCJ');
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body data-spy="scroll" data-target="#navbar">
|
|
|
|
{% include nav/navbar.html %}
|
|
|
|
|
|
|
|
<!-- Content -->
|
|
|
|
<div class="container main">
|
|
|
|
<!-- Cookie notification -->
|
|
|
|
<div id="cookieinfo"></div>
|
|
|
|
<script src="/scripts/cookieinfo.js"></script>
|
|
|
|
<div id="main">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|