File: D:/HostingSpaces/SBogers10/kms.komma.pro/wwwroot/app/views/basic_page/v_items.php
<div id="list" class="large">
<!-- Header -->
<div class="header">
<h1><?php $this->getData('bar_title'); ?></h1>
<span class="count"><?php $this->getData('bar_count'); ?> items</span>
</div>
<!-- Search section -->
<div class="search_holder">
<span class="magnifier"></span>
<form action="" method="post">
<input type="text" name="search" value="<?php echo $this->lang['search']; ?>" class="search" />
</form>
</div>
<div class="scrollable_area">
<!-- Add new item -->
<a href="<?php echo LANG_ROOT . URL_PAGE . '/' . $this->urls['newItem']; ?>" class="add_new_item"><span class="plus"></span>Add new item</a>
<!-- Item list -->
<ul>
<?php $this->getData('item_list'); ?>
</ul>
</div>
</div>