34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% load staticfiles %}
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="uli uli">
|
|
<meta name="author" content="veedeeämkoo">
|
|
<link rel="stylesheet" href="{% static "css/webapp.css" %}">
|
|
|
|
<title>{% trans "Aalto-yliopiston Sähköinsinöörikilta ry" %}</title>
|
|
|
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
|
<script src="{% static "js/lib/jquery-3.1.0.min.js" %}"></script>
|
|
<script src="{% static "js/lib/bootstrap.min.js" %}"></script>
|
|
<link rel="stylesheet" href="{% static "css/lib/bootstrap.min.css" %}">
|
|
<script src="{% static "js/lib/underscore-min.js" %}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="page-content">
|
|
{% include "navigation.html" %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% include "footer.html" %}
|
|
</body>
|
|
</html>
|