PostText/templates/layouts/main.html.ep
2022-08-24 00:48:48 -04:00

20 lines
305 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title>Post::Text - <%= title %></title>
<%= asset 'main.css' %>
</head>
<body>
<h1>Post::Text</h1>
<nav>
<%= link_to List => 'list' %>
<%= link_to New => 'post' %>
</nav>
<hr>
<%= content =%>
<footer>
<p>In UTF-8 we trust.</p>
</footer>
</body>
</html>