guestbook-ng/templates/layouts/default.html.ep

26 lines
491 B
Plaintext
Raw Normal View History

2021-12-04 00:11:37 -05:00
<!DOCTYPE html>
<html>
<head>
2021-12-04 23:51:38 -05:00
<title>Guestbook-NG - <%= title %></title>
2021-12-22 23:18:35 -05:00
<%= asset 'swagg.css' %>
2021-12-04 00:11:37 -05:00
</head>
<body>
2021-12-04 23:51:38 -05:00
<center>
<h1>Guestbook-NG</h1>
2021-12-04 23:51:38 -05:00
<!-- Nav table -->
<table>
<tr>
2021-12-11 19:01:43 -05:00
<td><%= link_to View => 'index' %></td>
2021-12-04 23:51:38 -05:00
<td>&nbsp;</td>
2021-12-11 19:01:43 -05:00
<td><%= link_to Sign => 'sign' %></td>
2021-12-04 23:51:38 -05:00
</tr>
</table>
<%= content %>
<footer>
<p><i>Maximize your dynamic innovation using battle-tested deep
learning models.</i></p>
</footer>
2021-12-04 23:51:38 -05:00
</center>
2021-12-04 00:11:37 -05:00
</body>
</html>