1
0
mirror of synced 2025-01-17 22:11:41 +03:00

Initial entry.

This commit is contained in:
Jonathan.Wage 2007-09-06 18:29:57 +00:00
parent fd2a85b5f3
commit 4804aa0a52
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,4 @@
default:
stylesheets: [main, layout, manual, manual_iefix: { media: print }]
javascripts: [mootools.v1.11, manual_tree, manual_toc]
layout: manual_layout

View File

@ -0,0 +1,44 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<?php include_http_metas() ?>
<?php include_metas() ?>
<?php include_title() ?>
<link rel="shortcut icon" href="/favicon.ico" />
</head>
<body>
<div id="wrapper">
<div id="header">
<?php echo get_partial('global/header'); ?>
</div>
<div id="menu">
<?php echo get_partial('global/menu'); ?>
</div>
<div id="left">
&nbsp;
</div>
<?php if( has_slot('right') ): ?>
<div id="right">
<?php echo get_slot('right'); ?>
</div>
<?php endif; ?>
<div id="content">
<?php echo $sf_data->getRaw('sf_content') ?>
</div>
<div id="footer">
<?php echo get_partial('global/footer'); ?>
</div>
</div>
</body>
</html>