1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-08 05:26:51 +00:00
TiddlyWiki5/plugins/tiddlywiki/multiwikiserver/templates/page.tid
Jeremy Ruston 891f0fd599 Fix page body class in static pages
So that we get the TW background colour
2024-03-20 17:55:50 +00:00

21 lines
479 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 class="tc-body">
`
<$view tiddler=<<page-content>> field="text" format="htmlwikified" />
`
</body>
</html>
`