28 lines
419 B
PHP
28 lines
419 B
PHP
<?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'); ?>
|