26 lines
534 B
Plaintext
26 lines
534 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title><%= titles['name'] %>
|
|
<% if title then %>
|
|
- <%= title %>
|
|
<% end %>
|
|
</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body class="body">
|
|
<div class="root">
|
|
<div class="rootcontainer">
|
|
|
|
<% render("views.navigation") %>
|
|
<% content_for("inner") %>
|
|
|
|
<div class="rootdesc">bookings <at> puikheid.nl</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|