2024-03-18 22:26:24 +00:00
|
|
|
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" />
|
2024-03-20 09:44:52 +00:00
|
|
|
<link rel="stylesheet" href="/.system/styles.css">
|
2024-03-18 22:26:24 +00:00
|
|
|
</head>
|
2024-03-20 17:55:50 +00:00
|
|
|
<body class="tc-body">
|
2024-03-18 22:26:24 +00:00
|
|
|
`
|
|
|
|
<$view tiddler=<<page-content>> field="text" format="htmlwikified" />
|
|
|
|
`
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
`
|