39 lines
886 B
Text
39 lines
886 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title> Durf Doen! - <%= item[:titel] || abbreviation(item) %> </title>
|
|
|
|
<link rel="stylesheet" href="/stylesheets/main.css">
|
|
<link rel="shortcut icon" href="/assets/favicon.png">
|
|
|
|
<%#= item[:head] %>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="header_blueSquare backgroundSquare"></div>
|
|
<%= render '/partials/navbar.*' %>
|
|
<%#= yield :header %>
|
|
|
|
<%= yield %>
|
|
|
|
<footer>
|
|
<div>
|
|
<img src="" alt="">
|
|
<img src="" alt="">
|
|
<img src="" alt="">
|
|
<img src="" alt="">
|
|
<img src="" alt="">
|
|
<img src="" alt="">
|
|
<img src="" alt="">
|
|
</div>
|
|
<p>©2020 Gentse studentenraad</p>
|
|
<div>
|
|
<p>Made with ♥ by</p>
|
|
<img src="" alt="">
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|