mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
9e3618bdcf
The change is to avoid confusion with the HTML 'title' attribute. The name 'tiddler' better emphasises the purpose of the attribute, too.
21 lines
672 B
Plaintext
21 lines
672 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 class="tw-body">
|
|
`{{$:/StaticBanner||$:/core/templates/html-tiddler}}`
|
|
<section class="story-river">
|
|
`<$view tiddler="$:/core/ui/ViewTemplate" format="htmlwikified"/>`
|
|
</section>
|
|
</body>
|
|
</html>
|
|
` |