guestbook-ng/templates/layouts/default.html.ep
2021-12-04 23:51:38 -05:00

23 lines
407 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Guestbook-NG - <%= title %></title>
</head>
<body>
<center>
<h1><%= title %></h1>
<!-- Nav table -->
<table>
<tr>
<td><%= link_to Home => 'index' %></td>
<td>&nbsp;</td>
<td><%= link_to Test => 'test' %></td>
<td>&nbsp;</td>
<td><%= link_to Post => 'post' %></td>
</tr>
</table>
<%= content %>
</center>
</body>
</html>