mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
19 lines
797 B
PHP
19 lines
797 B
PHP
<script src="<?= site_url('themes/focus2/vendor/timeago/jquery.timeago.js'); ?>"></script>
|
|
<script src="<?= site_url('themes/focus2/vendor/timeago/locales/jquery.timeago.'.langJS().'.js'); ?>"></script>
|
|
<script>
|
|
"use strict";
|
|
$(document).ready(function () {
|
|
let time_ago = document.getElementsByClassName("timeAgo");
|
|
for (let i = 0; i < time_ago.length; i++) {
|
|
time_ago[i].innerText = jQuery.timeago(time_ago[i].innerText)
|
|
}
|
|
});
|
|
</script>
|
|
<div class="footer">
|
|
<div class="copyright">
|
|
<p>Copyright © Designed by <a href="https://quixkit.com/" target="_blank">Quixkit</a> & Developed by <a href="https://eduardofiorini.com/" target="_blank">Eduardo Fiorini</a> - WebGuard v<?=version()?> </p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|