mirror of
https://gitlab.com/CodeSolutionsProject/CodeShare.git
synced 2026-02-14 17:11:34 +01:00
55 lines
1.9 KiB
Twig
55 lines
1.9 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ page.title }}</title>
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ path.css }}/bootstrap-paper.css"/>
|
|
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
|
|
<link type="text/css" rel="stylesheet" href="{{ path.css }}/main.css"/>
|
|
<link type="text/css" rel="stylesheet" href="{{ path.css }}/codeStyles/vs.css"/>
|
|
{#<link rel="shortcut icon" href="{{ path.img }}favicon.ico" type="image/x-icon"/>#}
|
|
{% block css %}{% endblock %}
|
|
|
|
<meta charset="utf-8"/>
|
|
<meta name="description" content="{{ page.description }}"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<script src="{{ path.js }}/highlight.pack.js"></script>
|
|
<script src="{{ path.js }}/functions.js"></script>
|
|
<script src="{{ path.js }}/jquery-3.2.1.min.js"></script>
|
|
<script src="{{ path.js }}/bootstrap.min.js"></script>
|
|
</head>
|
|
<body>
|
|
{% include 'nav.twig' %}
|
|
{% include 'header.twig' %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{% include "footer.twig" %}
|
|
|
|
{% block js %}
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
|
{% endblock %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
|
|
<script>
|
|
window.addEventListener("load", function(){
|
|
window.cookieconsent.initialise({
|
|
"palette": {
|
|
"popup": {
|
|
"background": "#2196f3",
|
|
"text": "#b2dbfb"
|
|
},
|
|
"button": {
|
|
"background": "transparent",
|
|
"text": "#b2dbfb",
|
|
"border": "#b2dbfb"
|
|
}
|
|
},
|
|
"content": {
|
|
"href": "http://localhost:8080/?page=tos#cookiePolicy"
|
|
}
|
|
})});
|
|
</script>
|
|
</body>
|