23 lines
630 B
Plaintext
23 lines
630 B
Plaintext
<!DOCTYPE HTML>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<% if page_title then %>
|
|
<title>Porom - <%= page_title %></title>
|
|
<% else %>
|
|
<title>Porom</title>
|
|
<% end %>
|
|
<link rel="stylesheet" href="<%= "/static/style.css?v=" .. __cachebust %>">
|
|
</head>
|
|
<body>
|
|
<% render("views.common.topnav") -%>
|
|
<% content_for("inner") %>
|
|
<footer class="darkbg">
|
|
<span>Porom commit <a href="<%= "https://git.poto.cafe/yagich/porom/commit/" .. __commit %>"><%= __commit %></a>
|
|
</span>
|
|
</footer>
|
|
<script src="/static/js/copy-code.js"></script>
|
|
<script src="/static/js/date-fmt.js"></script>
|
|
</body>
|
|
</html>
|