This repository has been archived on 2025-11-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
tonton-web/views/layout.erb

25 lines
No EOL
373 B
Text

<html>
<head>
<title>TonTon</title>
</head>
<body>
<header>
<nav>
<a href="/readme.md">Readme</a>
<a href="/building.md">Building</a>
<a href="/QA.md">Q&A</a>
</nav>
<header>
<%= yield %>
</body>
<script>
const title = document.querySelector('title');
title.textContent = document.querySelector('h1').textContent;
</script>
</html>