Files
oddmu/view.html
Alex Schroeder 18060c607d Add two meta elements to the templates
Format detection telephone=no. What an aggravating idea. Every single
website has to add this, now? Is that going to be way forward into the
future? For every single future misfeature?

Viewport width=device-with. Same rant.
2023-08-21 22:50:09 +02:00

20 lines
462 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width">
<title>{{.Title}}</title>
<style>
html { max-width: 70ch; padding: 2ch; margin: auto; color: #111; background: #ffe; }
</style>
</head>
<body>
<h1>{{.Title}}</h1>
<p><a href="/edit/{{.Title}}">Edit this page</a></p>
<div>
{{.Html}}
</div>
</body>
</html>