website/src/layouts/default.html.eco

22 lines
684 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><%= @document.title %></title>
<meta content='width=device-width, minimum-scale=1.0, maximum-scale=1.0' name='viewport'>
<!--[if IE]>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<%- @getBlock("meta").toHTML() %>
<%- @getBlock("styles").add(["/styles/style.css"]).toHTML() %>
<link href='https://fonts.googleapis.com/css?family=Raleway:300|Abel' rel='stylesheet' type='text/css'>
</head>
<body>
<%- @content %>
<%- @getBlock("scripts").toHTML() %>
<footer>
<p>Image: NASA / ESA</p>
</footer>
</body>
</html>