The-Navigators-Blog/source/layout.erb

15 lines
435 B
Plaintext
Raw Normal View History

2019-05-07 01:54:16 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv='X-UA-Compatible' content='IE=edge;chrome=1' />
2019-06-04 01:14:36 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1"/>
2019-05-07 01:54:16 +00:00
2019-06-04 01:14:36 +00:00
<title>The Navigator's Blog<%= ' - ' + current_article.title unless current_article.nil? %></title>
<link rel="shortcut icon" href="/favicon.ico"/>
2019-05-07 01:54:16 +00:00
</head>
2019-06-04 01:14:36 +00:00
<body bgcolor="#092327">
2019-05-07 01:54:16 +00:00
<%= yield %>
</body>
</html>