Add static pages for license and about

The about page needs more information.
But we'll get to that later.
This commit is contained in:
Karsten Heiken
2011-09-03 13:13:09 +02:00
parent 79ea096959
commit c38330fcac
4 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php $this->load->view('header'); ?>
<div id="content">
<div class="title">
<h2><?=_('About');?></h2>
</div>
<div class="box">
<h3><?=_('Introduction');?></h3>
<p>
</p>
</div>
<div class="box">
<h3><?=_('Contributors');?></h3>
<p>
<h4>Programming</h4>
<ul>
<li>Karsten Heiken, 2011</li>
<li>Eike Foken, 2011</li>
</ul>
</p>
</div>
</div>
<?php $this->load->view('footer'); ?>