2009-08-28 17:00:47 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Layout Editor</title>
|
|
|
|
<script type="text/javascript" src="prototype.js"></script>
|
|
|
|
<script type="text/javascript" src="LayoutEditor.js"></script>
|
|
|
|
<style type="text/css">
|
2009-08-29 15:13:18 +00:00
|
|
|
#layout-editor-container > div {
|
|
|
|
}
|
|
|
|
|
|
|
|
#layout-editor-container > div > div {
|
|
|
|
border: solid red 1px;
|
|
|
|
background-color: #aaa;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%
|
2009-08-28 17:00:47 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="layout-editor-container" style="width: 300px"></div>
|
|
|
|
<form id="layout-editor-controls">
|
2009-08-29 15:13:18 +00:00
|
|
|
<h3>Sidebars</h3>
|
|
|
|
<?php foreach (array(
|
|
|
|
'left' => array(
|
|
|
|
'name' => 'Left Sidebar'
|
|
|
|
)
|
|
|
|
) as $key => $info) { ?>
|
|
|
|
<h4><?php echo $info['name'] ?></h4>
|
|
|
|
|
|
|
|
<?php } ?>
|
2009-08-28 17:00:47 +00:00
|
|
|
</form>
|
|
|
|
</body>
|
2009-08-29 15:13:18 +00:00
|
|
|
</html>
|