52 lines
1.8 KiB
HTML
52 lines
1.8 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="Aalto-yliopiston Sähköinsinöörikilta ry">
|
|
<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>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
|
|
<script src="{% static "js/lib/underscore-min.js" %}"></script>
|
|
|
|
<script>
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
{% block header %}
|
|
<div class="header">
|
|
{% include "sik_header.html" %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<div class="page-content">
|
|
{% block navigation %}
|
|
{% include "navigation.html" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% block footer %}
|
|
{% include "footer.html" %}
|
|
{% endblock footer %}
|
|
</body>
|
|
</html>
|