2020-06-01 19:44:08 +00:00
|
|
|
---
|
|
|
|
title: sp-codes
|
|
|
|
---
|
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ locale }}" prefix="og: http://ogp.me/ns#">
|
|
|
|
<head>
|
|
|
|
<title>sp-codes - {{ title }}</title>
|
|
|
|
<base href="/">
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="fragment" content="!">
|
|
|
|
<meta name="target" content="all">
|
|
|
|
<meta name="audience" content="all">
|
|
|
|
<meta name="coverage" content="Worldwide">
|
|
|
|
<meta name="distribution" content="Global">
|
|
|
|
<meta name="rating" content="general">
|
|
|
|
<meta name="url" content="https://sp-codes.de/">
|
|
|
|
<meta name="subject" content="sp-codes">
|
|
|
|
<meta name="description" content="Samuel Philipp - Software Engineer from Magdeburg">
|
|
|
|
<meta name="author" content="Samuel Philipp">
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:locale" content="de">
|
|
|
|
<meta property="og:url" content="https://sp-codes.de/">
|
|
|
|
<meta property="og:title" content="sp-codes">
|
2020-06-03 22:04:32 +00:00
|
|
|
<meta property="og:description" content="Samuel Philipp - Software Engineer from Magdeburg">
|
2020-06-01 19:44:08 +00:00
|
|
|
<meta property="og:site_name" content="sp-codes">
|
|
|
|
<meta property="og:image" content="https://sp-codes.de/img/sp-codes.jpg">
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
<meta name="twitter:title" content="sp-codes">
|
|
|
|
<meta name="twitter:description" content="Samuel Philipp - Software Engineer from Magdeburg">
|
|
|
|
<meta name="twitter:image" content="https://sp-codes.de/img/sp-codes.jpg">
|
2021-04-09 23:09:45 +00:00
|
|
|
<link rel="shortcut icon" href="img/sp-codes.ico">
|
2020-06-01 19:44:08 +00:00
|
|
|
<link rel="stylesheet" href="/css/main.css">
|
2021-02-06 01:37:54 +00:00
|
|
|
<script async defer data-domain="sp-codes.de" src="https://plausible.sp-codes.de/js/plausible.outbound-links.js"></script>
|
2020-06-01 19:44:08 +00:00
|
|
|
</head>
|
2020-12-06 00:23:45 +00:00
|
|
|
<body>
|
|
|
|
<nav class="nav menu border-bottom">
|
|
|
|
<div class="toggle">
|
|
|
|
<label for="menu" class="m-0"><span class="fas fa-bars fa-fw mr-1"></span>{{ strings.menu[locale] }}</label>
|
|
|
|
|
|
|
|
<div class="flex-grow-1"></div>
|
|
|
|
|
|
|
|
{% for language in site.languages %}
|
|
|
|
<div {% if language.code== locale %} class="active" {% endif %}>
|
2021-04-05 19:46:34 +00:00
|
|
|
<a href="{% translatedUrl locale, language.code %}" class="ml-3">
|
2020-12-06 00:23:45 +00:00
|
|
|
<span class="flag-icon flag-icon-{{ language.icon }}" title="{{ language.label }}"></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<input type="checkbox" id="menu"/>
|
|
|
|
|
|
|
|
<div class="items">
|
|
|
|
{%- for entry in collections.all | eleventyNavigation %}
|
|
|
|
{% if not entry.url.startsWith("https") and entry.url.includes(locale) or entry.locale == locale %}
|
|
|
|
<div class="item{% if entry.url == page.url %} active{% endif %}">
|
|
|
|
<a href="{{ entry.url | url }}" class="mr-3">
|
|
|
|
{% if entry.icon %}<span class="fas fa-{{ entry.icon }} fa-fw mr-1"></span>{% endif %}{{ entry.title }}
|
|
|
|
</a>
|
2020-06-01 19:44:08 +00:00
|
|
|
</div>
|
2020-12-06 00:23:45 +00:00
|
|
|
{% endif %}
|
|
|
|
{%- endfor %}
|
|
|
|
</div>
|
|
|
|
|
2020-06-01 19:44:08 +00:00
|
|
|
<div class="flex-grow-1"></div>
|
2020-12-06 00:23:45 +00:00
|
|
|
|
|
|
|
<div class="lang-large">
|
|
|
|
{% for language in site.languages %}
|
|
|
|
<div {% if language.code== locale %} class="active" {% endif %}>
|
2021-04-05 19:46:34 +00:00
|
|
|
<a href="{% translatedUrl locale, language.code %}" class="ml-3">
|
2020-12-06 00:23:45 +00:00
|
|
|
<span class="flag-icon flag-icon-{{ language.icon }}" title="{{ language.label }}"></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-06-01 19:44:08 +00:00
|
|
|
</div>
|
2020-12-06 00:23:45 +00:00
|
|
|
</nav>
|
2021-04-05 19:46:34 +00:00
|
|
|
<p>{{url}}</p>
|
2020-12-06 00:23:45 +00:00
|
|
|
<div class="content">
|
|
|
|
<div class="container">
|
2020-06-03 22:04:32 +00:00
|
|
|
{{ content | safe }}
|
2020-06-01 19:44:08 +00:00
|
|
|
</div>
|
2020-12-06 00:23:45 +00:00
|
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-start flex-wrap p-2 menu border-top">
|
|
|
|
<div class="d-flex justify-content-start flex-wrap">
|
|
|
|
<div class="mr-3">Made with <span class="fas fa-heart highlight"></span> in Germany</div>
|
2021-04-05 18:06:54 +00:00
|
|
|
<div class="mr-3"><a href="https://samuel-philipp.de"><span class="far fa-copyright mr-1"></span>Samuel Philipp</a></div>
|
2020-12-06 00:23:45 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex-sm-grow-1"></div>
|
|
|
|
<div class="d-flex justify-content-sm-start flex-wrap">
|
|
|
|
<div class="mr-3"><a href="/{{locale}}/imprint"><span class="fas fa-info-circle mr-1"></span>{{strings.imprint[locale]}}</a>
|
2020-06-28 18:12:16 +00:00
|
|
|
</div>
|
2020-12-06 00:23:45 +00:00
|
|
|
<div class="mr-3"><a href="/{{locale}}/privacy"><span class="fas fa-user-secret mr-1"></span>{{strings.privacy[locale]}}</a>
|
2020-06-28 18:12:16 +00:00
|
|
|
</div>
|
2020-12-06 00:23:45 +00:00
|
|
|
<div class="mr-3"><a target="_blank" href="https://git.sp-codes.de/samuel-p/sp-codes.de"><span
|
|
|
|
class="fas fa-code mr-1"></span>{{strings.code[locale]}}</a></div>
|
|
|
|
<div><a target="_blank" href="https://plausible.sp-codes.de/sp-codes.de"><span
|
|
|
|
class="fas fa-chart-line mr-1"></span>{{strings.stats[locale]}}</a></div>
|
2020-06-01 19:44:08 +00:00
|
|
|
</div>
|
2020-12-06 00:23:45 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
2020-06-03 22:04:32 +00:00
|
|
|
</html>
|