29 lines
No EOL
516 B
Text
29 lines
No EOL
516 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="/git">Git</a>
|
|
|
|
<a href="/chapa-sigmoide/readme.markdown">Chapa Sigmóide</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
|
|
<script>
|
|
const title = document.querySelector('title');
|
|
|
|
title.textContent = document.querySelector('h1').textContent;
|
|
</script>
|
|
</html> |