eastside/application/views/templates/template.php
Linus Miller cd141ef6fa Initial commit.
Former-commit-id: d2e17d67fe98124db4e87b10597af9d54d14d0de
2013-12-07 17:43:26 +01:00

62 lines
1.9 KiB
PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Template</title>
<?= $_scripts ?>
<?= $_styles ?>
<style type="text/css">
body {
background-color: #fff;
margin: 40px;
font-family: Lucida Grande, Verdana, Sans-serif;
font-size: 12px;
color: #000;
}
#content {
border: #999 1px solid;
background-color: #fff;
padding: 20px 20px 12px 20px;
}
h1 {
font-weight: normal;
font-size: 14px;
color: #990000;
margin: 0 0 4px 0;
}
a {
color: #069;
text-decoration: underline;
}
a:hover {
color: #900;
}
p {
line-height: 1.55;
}
</style>
</head>
<body>
<div id="content">
<h1>Template Library</h1>
<p>The Template library, written for the <a href="http://www.codeigniter.com">CodeIgniter PHP
framework</a>, is a wrapper for CI's View
implementation. Template is a reaction to the numerous questions from the CI community
regarding how one would display multiple views for one controller, and how to embed "views
within views" in a standardized fashion.</p>
<p>In addition, Template provides extra Views loading
capabilities and shortcuts for including CSS, JavaScript, and other common elements in your
final rendered HTML.</p>
<p><a href="http://www.williamsconcepts.com/ci/libraries/template/index.html">Read Template
Library Documentation Online</a></p>
<?php print $content ?>
</div>
</body>
</html>