Initial Commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<footer class="text-center p-1 footer-styling">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<p class="fw-bold">
|
||||
<b class="">@lang('footer.created')</b> :
|
||||
@lang('author') @lang('footer.help') @lang('footer.group')
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<p class="fw-bold">
|
||||
© <?php
|
||||
$fromYear = 2022;
|
||||
$thisYear = (int)date('Y');
|
||||
echo $fromYear . (($fromYear != $thisYear) ? '-' . $thisYear : '');?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<style>
|
||||
.footer-styling {
|
||||
background-color: darkgray;
|
||||
margin: auto 0 0;
|
||||
width: 100%;
|
||||
position: sticky;
|
||||
top: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user