33 lines
No EOL
625 B
Text
33 lines
No EOL
625 B
Text
<html>
|
|
<head>
|
|
<title>Chapa Sigmóide</title>
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/chapa_sigmoide.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a href="/readme.md">Início</a>
|
|
|
|
<a href="/chapa-sigmoide/readme.md">Chapa Sigmóide</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
|
|
<script>
|
|
const title = document.querySelector('title');
|
|
|
|
const h1 = document.querySelector('h1');
|
|
|
|
title.textContent = h1.textContent;
|
|
|
|
title.textContent = document.querySelector('header').append(h1);
|
|
</script>
|
|
</html> |