1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-08 19:09:57 +00:00
TiddlyWiki5/plugins/tiddlywiki/multiwikiserver/templates/page.tid
Jeremy Ruston 6063256439 Create new static index route with ability to create/update bags and recipes
Also introduces a new /.system/filename route for stylesheets, scripts etc.
2024-03-20 09:44:52 +00:00

23 lines
498 B
Plaintext

title: $:/plugins/tiddlywiki/multiwikiserver/templates/page
<!--
Template for the basic HTML page layout. Expects the following variables:
page-content: title of tiddler containing the main page content
-->
`
<!doctype html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="/.system/styles.css">
</head>
<body>
<div class="pageContainer">
`
<$view tiddler=<<page-content>> field="text" format="htmlwikified" />
`
</div>
</body>
</html>
`