Zost/views/layout.erb

33 lines
No EOL
587 B
Text

<html>
<head>
<title>TonTon</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<header>
<nav>
<a href="/readme.md">Readme</a>
<a href="/chapa-sigmoide/readme">Chapa Sigmóide</a>
<a href="/building.md">Building</a>
<a href="/QA.md">Q&A</a>
</nav>
</header>
<main>
<%= yield %>
</main>
</body>
<script>
const title = document.querySelector('title');
title.textContent = document.querySelector('h1').textContent;
</script>
</html>