mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 01:26:18 +00:00
9ab0c84140
The new importvariables widget imports macro/variable definitions from the specified tiddlers and makes them available to its children. Allows us to split PageMacros up into separate tiddlers. We still support loading macros from $:/core/ui/PageMacros to help people upgrading. Fixes #644 and #559
27 lines
909 B
Plaintext
27 lines
909 B
Plaintext
title: $:/core/templates/static.template.html
|
|
type: text/vnd.tiddlywiki-html
|
|
|
|
\define tw-wikilink-template() static/$uri_doubleencoded$.html
|
|
\rules only filteredtranscludeinline transcludeinline
|
|
<!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 id="faviconLink" rel="shortcut icon" href="favicon.ico">
|
|
<title>{{$:/core/wiki/title}}</title>
|
|
<div id="styleArea">
|
|
{{$:/boot/boot.css||$:/core/templates/css-tiddler}}
|
|
</div>
|
|
<style type="text/css">
|
|
{{$:/core/ui/PageStylesheet||$:/core/templates/wikified-tiddler}}
|
|
</style>
|
|
</head>
|
|
<body class="tw-body">
|
|
{{$:/StaticBanner||$:/core/templates/html-tiddler}}
|
|
{{$:/core/ui/PageTemplate||$:/core/templates/html-tiddler}}
|
|
</body>
|
|
</html>
|