mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
e03d576f55
Re-added lang encoding, and added title attribute
29 lines
756 B
Scheme
29 lines
756 B
Scheme
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<% base_tag %>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<link rel="stylesheet" type="text/css" href="tutorial/css/layout.css" />
|
|
<link rel="stylesheet" type="text/css" href="tutorial/css/typography.css" />
|
|
<link rel="stylesheet" type="text/css" href="tutorial/css/form.css" />
|
|
</head>
|
|
<body>
|
|
<div id="Main">
|
|
<div id="Header">
|
|
<h1> </h1>
|
|
</div>
|
|
<div id="ContentContainer">
|
|
<div id="Content" class="typography">
|
|
$Content
|
|
$Form
|
|
</div>
|
|
</div>
|
|
<div id="Footer">
|
|
<span>Visit <a href="http://www.silverstripe.com" title="Visit www.silverstripe.com">www.silverstripe.com</a> to download the CMS</span>
|
|
</div>
|
|
</div>
|
|
$SilverStripeNavigator
|
|
</body>
|
|
</html>
|