1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-21 11:49:44 +00:00
TiddlyWiki5/plugins/tiddlywiki/multiwikiserver/templates/page.tid

21 lines
479 B
Plaintext
Raw Normal View History

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