PostText/templates/layouts/main.html.ep

16 lines
232 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title>Post::Text - <%= title %></title>
</head>
<body>
<h1>Post::Text</h1>
<nav>
<%= link_to View => 'view' %>
<%= link_to New => 'post' %>
</nav>
<hr>
<%= content =%>
</body>
</html>