blob: c63acf97eb2ab2b0d3cf0a79490fe2f8ca2ecde8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><%= @title %> — Luke Shumaker</title>
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<header><%= @breadcrumbs %></header>
<article>
<%= @content %>
</article>
<footer>
<p>The content of this page is Copyright © <%= @date.year unless @date.nil? %> <%= @author %>.</p>
<p>This page is licensed under the <%= @license %> license.</p>
</footer>
</body>
</html>
|