Add some basic info in exception footer.

This commit is contained in:
Lonnie Ezell 2015-10-12 22:07:04 -05:00
parent 19d15e6292
commit f6158e61f8
2 changed files with 18 additions and 0 deletions

View File

@ -41,6 +41,12 @@ h1 {
display: inline;
}
.footer .container {
border-top: 1px solid #e7e7e7;
margin-top: 1rem;
text-align: center;
}
.source {
background: #333;
color: #c7c7c7;

View File

@ -252,5 +252,17 @@
</div> <!-- /container -->
<div class="footer">
<div class="container">
<p>
Displayed at <?= date('H:i:sa') ?> &mdash;
PHP: <?= phpversion() ?> &mdash;
CodeIgniter: <?= CI_VERSION ?>
</p>
</div>
</div>
</body>
</html>