summaryrefslogtreecommitdiff
path: root/src/application/views/template_end.php
blob: f7f70a96bd9e8505da7d182038584f797d42ef60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</div>
<footer class="footer">
<div class="container">
<div class="panel panel-default">
<div class="panel-body">
    &copy; <?= date("Y") ?>
</div>
</div>
</div>
</footer>

<script>
$(function() {
    $("._time").each(function(i, e) {
        var date = new Date($(e).text());
        $(e).text(date.toLocaleString());
    });
});
</script>

</body>
</html>