mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<link rel="stylesheet" href="{% static 'css/layout.css' %}" />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="page-container">
|
|
<div class="content-wrap">
|
|
|
|
<header>
|
|
<div>
|
|
<ul>
|
|
<li><a href="{% url 'home' %}"><span class="material-icons">home</span>Home</a></li>
|
|
<!-- <li><a href=""><span class="material-icons"></span></a></li> -->
|
|
<!-- <li><a href=""><span class="material-icons"></span></a></li> -->
|
|
</ul>
|
|
</div>
|
|
</header>
|
|
|
|
<main>{% block content %}{% endblock %}</main>
|
|
|
|
<footer>
|
|
<p>
|
|
Copyright ©
|
|
<script>
|
|
document.write(new Date().getFullYear());
|
|
</script>
|
|
Kristofers Solo
|
|
</p>
|
|
</footer>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|