archive
/
static-share
Archived
1
Fork 0
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.
static-share/templates/base.html

15 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>