23 lines
811 B
HTML
23 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>
|