Ejemplo n.º 1
0
<?php

while (($error = ErrorManager::pop()) !== null) {
    echo "<div class=\"alert alert-" . ($error->severity == ErrorManager::SEVERITY_ERROR ? "danger" : "warning") . "\" role=\"alert\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">\n          <span aria-hidden=\"true\">&times;</span>\n        </button>\n        " . $error->msg . "\n    </div>";
}
?>

<footer class="footer">
    <div class="container">
        <table class="table borderless">
            <tr>
                <td><a href="/about"><?php 
echo I18n::get("about");
?>
</a></td>
                <td><a href="/contact"><?php 
echo I18n::get("contact");
?>
</a></td>
                <td><a href="/legal"><?php 
echo I18n::get("legal");
?>
</a></td>
                <td><a href="/cookies"><?php 
echo I18n::get("cookies");
?>
</a></td>
            </tr>
        </table>
    </div>
</footer>