1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
website-2020-spike/templates/base.html

24 lines
811 B
HTML

{% load static %}
<!DOCTYPE HTML>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Language" content="" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<link rel="alternate" type="application/rss+xml" href="" />
<meta name="superfish" content="nofish" />
<meta name="application-name" content="TheOrangeOne" />
<title>{% block title %}{% endblock %} :: TheOrangeOne</title>
<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" />
<link rel="stylesheet" href="{% static 'css/index.css' %}" />
</head>
<body>
{% block content %}{% endblock %}
<script type="text/javascript" src="{% static 'js/materialize.min.js' %}"></script>
</body>
</html>