mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
18 lines
263 B
Scheme
18 lines
263 B
Scheme
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<% base_tag %>
|
||
|
<title>$Title</title>
|
||
|
</head>
|
||
|
<body class="cms cms-security">
|
||
|
<h1>$Title</h1>
|
||
|
<% if $Content %>
|
||
|
<div class="Content">$Content</div>
|
||
|
<% end_if %>
|
||
|
<div class="Form">
|
||
|
$Form
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|