tonton-web/views/layout.erb

25 lines
No EOL
353 B
Text

<html>
<head>
<title>TonTon</title>
</head>
<body>
<header>
<nav>
<a href="/home">Home</a>
<a href="/wiki">Wiki</a>
<a href="/git">Git</a>
</nav>
<header>
<%= yield %>
</body>
<script>
const title = document.querySelector('title');
title.textContent = document.querySelector('h1').textContent;
</script>
</html>