mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-20 08:44:52 +00:00
623a3ec8f8
What we have at the moment isn't really the same as TiddlyWiki classic's shadow tiddlers, it's a much simpler system for excluding tiddlers. We'll use the term "shadow" instead to refer to the way that tiddlers in plugins behave, which is exactly like TiddlyWiki classic's shadow tiddlers.
24 lines
739 B
Plaintext
24 lines
739 B
Plaintext
title: $:/core/templates/static.template.html
|
|
type: text/vnd.tiddlywiki-html
|
|
|
|
\define tw-wikilink-template() static/$uri_encoded$.html
|
|
\rules only filteredtranscludeinline transcludeinline
|
|
<!doctype 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">
|
|
<title>{{$:/core/wiki/title}}</title>
|
|
<div id="styleArea">
|
|
{{{ [is[system]type[text/css]] ||$:/core/templates/css-tiddler}}}
|
|
</div>
|
|
<style type="text/css">
|
|
{{$:/core/styles/base}}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{{$:/templates/PageTemplate||$:/core/templates/html-tiddler}}
|
|
</body>
|
|
</html>
|