1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 01:03:16 +00:00
TiddlyWiki5/core/templates/static.tiddler.html.tid
Jeremy Ruston ff0b93886b Restore missing opening <html> tag
Astonishingly, the templates have accidentally omitted the opening tag
for some time. There were no ill effects, because browsers obligingly
add it back in when parsing
2013-09-05 09:31:17 +01:00

23 lines
694 B
Plaintext

title: $:/core/templates/static.tiddler.html
\define tw-wikilink-template() $uri_doubleencoded$.html
`<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="generator" content="TiddlyWiki" />
<meta name="tiddlywiki-version" content="`{{$:/core/templates/version}}`" />
<meta name="format-detection" content="telephone=no">
<link rel="stylesheet" href="static.css">
<title>`{{$:/core/wiki/title}}`</title>
</head>
<body>
`{{$:/StaticBanner||$:/core/templates/html-tiddler}}`
<section class="story-river">
<div class="tw-tiddler-frame">
`<$view tiddler="$:/core/ui/ViewTemplate" format="htmlwikified"/>`
</div>
</section>
</body>
</html>
`