The-Navigators-Blog/source/layout.erb

16 lines
521 B
Plaintext

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv='X-UA-Compatible' content='IE=edge;chrome=1' />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>The Navigator's Blog<%= ' - ' + current_article.title unless current_article.nil? %></title>
<link rel="shortcut icon" href="/favicon.ico"/>
<%= feed_tag :atom, "#{blog.options.prefix.to_s}/feed.xml", title: "Atom Feed" %>
</head>
<body bgcolor="#092327">
<%= yield %>
</body>
</html>