You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
680 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<% page = Page.new("." + request.path_info) %>
<% title = page.get_title %>
<head>
<title><%= title %></title>
<meta name="description" content="broken-moon.net - <%= title %>" />
<meta name="keywords" content="<%= title %>" />
<meta property="og:url" content="http://broken-moon.net/<%= title %>" />
<meta property="og:title" content="<%= title %>" />
<%= erb :headerBoilerplate %>
</head>
<body>
<%= erb :asidemenu %>
<div class="content">
<%= erb :blogbar, locals: {title: title} %>
<div class="article">
<%= page.render %>
<div class="articledate">
<%= page.get_date %>
</div>
</div>
</div>
<%= erb :bottom %>
</body>