14 lines
469 B
HTML
14 lines
469 B
HTML
{% load staticfiles %}
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
|
<title>{% block title %}{% endblock %} | StaticShare</title>
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/index.css' %}" />
|
|
<script src="{% static 'js/jquery.js' %}"></script>
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
<script src="{% static 'js/app.js' %}"></script>
|
|
</body>
|
|
</html>
|