mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-18 15:54:50 +00:00
762940adbc
These tiddlers were being handled as `<script>` tags to make it easier to debug them. But in fact modern dev tools are quite happy to debug code that has been eval’d, and this arrangement was causing problems for importing. Fixes #335
51 lines
2.0 KiB
Plaintext
51 lines
2.0 KiB
Plaintext
title: $:/core/templates/tiddlywiki5.html
|
|
|
|
\rules only filteredtranscludeinline transcludeinline
|
|
<!doctype html>
|
|
{{$:/core/templates/MOTW.html}}<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- Force IE standards mode for Intranet and HTA - should be the first meta -->
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<meta name="application-name" content="TiddlyWiki" />
|
|
<meta name="generator" content="TiddlyWiki" />
|
|
<meta name="tiddlywiki-version" content="{{$:/core/templates/version}}" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="copyright" content="{{$:/core/copyright.txt}}" />
|
|
<link id="faviconLink" rel="shortcut icon" href="favicon.ico">
|
|
<title>{{$:/core/wiki/title}}</title>
|
|
<!--~~ This is a Tiddlywiki file. The points of interest in the file are marked with this pattern ~~-->
|
|
|
|
<!--~~ Raw markup ~~-->
|
|
{{{ [tag[$:/core/wiki/rawmarkup]] ||$:/core/templates/plain-text-tiddler}}}
|
|
</head>
|
|
<body class="tw-body">
|
|
<!--~~ Static styles ~~-->
|
|
<div id="styleArea">
|
|
{{{ [is[system]type[text/css]] ||$:/core/templates/css-tiddler}}}
|
|
</div>
|
|
<!--~~ Static content for Google and browsers without JavaScript ~~-->
|
|
<noscript>
|
|
<div id="splashArea">
|
|
{{$:/core/templates/static.area}}
|
|
</div>
|
|
</noscript>
|
|
<!--~~ Ordinary tiddlers ~~-->
|
|
{{$:/core/templates/store.area.template.html}}
|
|
<!--~~ Library modules ~~-->
|
|
<div id="libraryModules" style="display:none;">
|
|
{{{ [is[system]type[application/javascript]library[yes]] ||$:/core/templates/javascript-tiddler}}}
|
|
</div>
|
|
<!--~~ Boot kernel prologue ~~-->
|
|
<div id="bootKernelPrefix" style="display:none;">
|
|
{{ $:/boot/bootprefix.js ||$:/core/templates/javascript-tiddler}}
|
|
</div>
|
|
<!--~~ Boot kernel ~~-->
|
|
<div id="bootKernel" style="display:none;">
|
|
{{ $:/boot/boot.js ||$:/core/templates/javascript-tiddler}}
|
|
</div>
|
|
</body>
|
|
</html>
|