PostText/templates/layouts/main.html.ep

20 lines
305 B
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<title>Post::Text - <%= title %></title>
2022-08-15 22:35:30 +00:00
<%= asset 'main.css' %>
</head>
<body>
<h1>Post::Text</h1>
2022-08-04 00:29:41 +00:00
<nav>
2022-08-24 04:48:48 +00:00
<%= link_to List => 'list' %>
2022-08-04 00:29:41 +00:00
<%= link_to New => 'post' %>
</nav>
<hr>
2022-07-30 06:33:45 +00:00
<%= content =%>
2022-08-14 07:02:37 +00:00
<footer>
<p>In UTF-8 we trust.</p>
</footer>
</body>
</html>