moved code up one level to eliminate the docs subdirectory
[acontent.git] / themes / default / feedbackmessage.tmpl.php
1 <?php 
2 /************************************************************************/
3 /* AContent                                                             */
4 /************************************************************************/
5 /* Copyright (c) 2010                                                   */
6 /* Inclusive Design Institute                                           */
7 /*                                                                      */
8 /* This program is free software. You can redistribute it and/or        */
9 /* modify it under the terms of the GNU General Public License          */
10 /* as published by the Free Software Foundation.                        */
11 /************************************************************************/
12
13 global $_base_href;
14  
15 // header
16 ?>
17 <div id="feedback">
18         <?php if (is_array($this->item)) : ?>
19                 <ul>
20                 <?php foreach($this->item as $e) : ?>
21                         <li><?php echo $e; ?></li>
22                 <?php endforeach; ?>
23                 </ul>
24         <?php endif; ?>
25 </div>