jmou/cgithub
git clone https://github.com/jmou/cgithub.git
git clone git@github.com:jmou/cgithub.git
Loading…
(top)/views/layouts/base.eta
522 Bytes / 17 lines / 16 loc
History
View raw
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><%= it.title %></title>
  <link rel="stylesheet" href="/static/style.css">
  <% for (const src of it.scripts ?? []) { %>
    <script src="<%= src %>" defer></script>
  <% } %>
</head>
<body>
  <%~ it.body %>

  <footer>Generated by cgithub commit <code><%= it.buildCommit %></code> · <a href="<%= it.githubUrl %>" rel="noreferrer">View original</a></footer>
</body>
</html>