1
1
Fork 0
portfolio/layouts/layout.html
2016-08-07 13:11:02 -05:00

26 lines
549 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{{ title }}</title>
<link href="app.css" type="text/css" rel="stylesheet" />
<meta name="description" content="{{ description }}">
</head>
<body>
<header>
<p>
<a href="/">Home</a>
</p>
</header>
<h1>{{ title }}</h1>
<p>{{ description }}</p>
{{{ contents }}}
<footer>
<p>Generated with {{ generator }} &mdash; <a href="{{ url }}">{{ url }}</a></p>
</footer>
<script src="http://localhost:35729/livereload.js"></script>
</body>
</html>