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.
theorangeone.net-legacy/theme/templates/base.html
2016-05-15 17:46:00 +01:00

22 lines
658 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>{% block htmltitle %}Page{% endblock%} - {{ SITENAME }}</title>
<link rel="stylesheet" href="static/css/index.css" type="text/css">
</head>
<body id="page-top">
{% block content %}{% endblock %}
<script src="static/js/jquery.js"></script>
<script src="static/js/libs.js"></script>
<script src="static/js/app.js"></script>
</body>
</html>