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

35 lines
757 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-25 01:05:34 -05:00
<meta name="viewport" content= "width=device-width, initial-scale=1.0">
2021-12-22 23:18:35 -05:00
<%= asset 'swagg.css' %>
2021-12-04 00:11:37 -05:00
</head>
<body>
2021-12-25 01:05:34 -05:00
<div class="outer">
2022-01-01 21:39:04 -05:00
<h1 id="top">Guestbook-NG</h1>
<nav>
<%= link_to View => 'index' %>
<%= link_to Sign => 'sign' %>
</nav>
2022-01-01 23:37:41 -05:00
<% if (flash 'error') { =%>
<div class="error">
<h2>Stop! You've violated the law:</h2>
<p><%= flash 'error' %></p>
<p>This incident has been reported to the cyber-police.</p>
</div>
<% } =%>
2022-01-01 21:39:04 -05:00
<hr>
2021-12-25 01:05:34 -05:00
</div>
<div class="inner">
2021-12-31 22:32:39 -05:00
<%= content =%>
2021-12-25 01:05:34 -05:00
</div>
<div class="outer">
<footer>
2022-01-01 21:39:04 -05:00
<p>Maximize your dynamic innovation using battle-tested deep
learning models.</p>
</footer>
2021-12-25 01:05:34 -05:00
</div>
2021-12-04 00:11:37 -05:00
</body>
</html>