added Analytics

This commit is contained in:
DerTyp187
2021-11-17 11:28:08 +01:00
parent f8ac7d60ff
commit 938859f5aa
16 changed files with 134 additions and 8 deletions

View File

@@ -0,0 +1,26 @@
{% load static %}
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="{% static 'main/css/fonts.css' %}">
<link rel="stylesheet" href="{% static 'main/css/base.css' %}">
<title>TealCode | Analytics</title>
</head>
<body>
<header>
<h1 style="cursor:pointer;" onclick="window.open('/analytics/', '_self')">TealCode | Analytics</h1>
<div>
<a href="/">TealCode</a>
</div>
</header>
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>

View File

@@ -0,0 +1,4 @@
{% extends "analytics/base.html" %}
{% block content %}
{% endblock content %}