mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-29 20:42:07 +01:00
103 lines
4.5 KiB
HTML
103 lines
4.5 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Required META Tags-->
|
|
<meta charset="utf-8"/>
|
|
<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"/>
|
|
|
|
<!-- Optional META Tags -->
|
|
<meta name="keywords" content="TealFire, TealCode, Snippet, Java, JavaScript, C, C#, C++, Python">
|
|
<meta name="author" content="TealFire - TealCode">
|
|
<meta name="description" content="TealCode - Your Code Snippet directory - Java, C, C#, C++, Python"/>
|
|
<meta http-equiv="refresh" content="1800">
|
|
|
|
<!-- Links -->
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}">
|
|
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
|
<link rel="stylesheet" href="{% static 'main/highlight/styles/atom-one-dark.min.css' %}">
|
|
|
|
{% if title %}
|
|
<title>TealCode - {{ title }} - {{ category_title }}</title>
|
|
{% else %}
|
|
<title>TealCode</title>
|
|
{% endif %}
|
|
</head>
|
|
<body class="bg-dark">
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9M4H60DMBG"></script>
|
|
<div style="background-color: rgba(255, 255, 255, 0.219);" id="cookie_banner" class="text-center">
|
|
<p>We only use non-technical cookies for analysis purposes.<br> Do you want to accept those cookies? (please)</p>
|
|
<button class="btn btn-success mb-3" onclick='document.cookie = "cookies_allowed=1;path=/";window.location.reload();'>Accept</button>
|
|
</div>
|
|
<script>
|
|
cookies_allowed = document.cookie.split("cookies_allowed=")[1][0]
|
|
console.log(cookies_allowed)
|
|
|
|
if(cookies_allowed == null){
|
|
document.cookie = "cookies_allowed=0;path=/";
|
|
cookies_allowed = document.cookie.split("cookies_allowed=")[1]
|
|
}
|
|
if(cookies_allowed == "1"){
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-9M4H60DMBG');
|
|
document.getElementById("cookie_banner").style.display = "none";
|
|
}else if(cookies_allowed == "0"){
|
|
console.log("DO NOT LOAD ANALYTILCS");
|
|
}
|
|
</script>
|
|
|
|
|
|
<header class="p-3 bg-dark text-white shadow">
|
|
<div class="container">
|
|
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
|
|
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
|
|
<img height="40" src="{% static 'logo.png' %}" alt=""/>
|
|
</a>
|
|
|
|
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
|
|
<li><a href="/" class="nav-link px-2 text-white">Categories</a></li>
|
|
<li><a href="/category/java/" class="nav-link px-2 text-white">Java</a></li>
|
|
<li><a href="/category/python/" class="nav-link px-2 text-white">Python</a></li>
|
|
<li><a href="/category/c/" class="nav-link px-2 text-white">C</a></li>
|
|
<li><a href="/category/cs/" class="nav-link px-2 text-white">C#</a></li>
|
|
<li><a href="/category/c++/" class="nav-link px-2 text-white">C++</a></li>
|
|
</ul>
|
|
|
|
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3">
|
|
<input type="search" class="form-control form-control-dark" placeholder="Search..." aria-label="Search">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<script src="{% static 'main/highlight/highlight.min.js' %}"></script>
|
|
<script>hljs.highlightAll();</script>
|
|
|
|
<script>
|
|
{% if category_title %}
|
|
document.getElementById("a-{{ category_title }}").classList.add("a-current");
|
|
{% else %}
|
|
document.getElementById("a-{{ category_obj.title }}").classList.add("a-current");
|
|
{% endif %}
|
|
|
|
|
|
</script>
|
|
|
|
<footer class="py-3 my-4">
|
|
<ul class="nav justify-content-center pb-3 mb-3">
|
|
<li class="nav-item"><a href="/privacy/" class="nav-link px-2 text-muted">Cookies/Privacy/Datenschutz</a></li>
|
|
<li class="nav-item"><a href="/about/" class="nav-link px-2 text-muted">About</a></li>
|
|
</ul>
|
|
</footer>
|
|
|
|
<script src="{% static 'js/bootstrap.js' %}"></script>
|
|
</body>
|
|
</html> |