b16748c7dfcbb4117e9b2a1a87eb72bd7a74a33b
[acontent.git] / docs / themes / default / errormessage.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="error">
18         <h4><?php echo _AT('the_follow_errors_occurred'); ?></h4>
19         <?php if (is_array($this->item)) : ?>
20                 <ul>
21                 <?php foreach($this->item as $e) : ?>
22                         <li><?php echo $e; ?></li>
23                 <?php endforeach; ?>
24                 </ul>
25         <?php endif; ?>
26 </div>