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

24 lines
657 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>
<section id="section-wrapper">
<div class="container">
{% block content %}{% endblock %}
</div>
</section>
<footer>
<div class="container">
<p>Powered by Static-Share</p>
</div>
</footer>
<script src="{% static 'js/app.js' %}"></script>
</body>
</html>