mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 19:09:57 +00:00
6063256439
Also introduces a new /.system/filename route for stylesheets, scripts etc.
23 lines
498 B
Plaintext
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>
|
|
`
|