forked from mirror/oddmu
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.
20 lines
462 B
HTML
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>
|