mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 12:17:10 +00:00
Bruno Fontes
5be29fc3d8
Now the welcome.blade has two new links to change language. Other pages has a footer with the language switcher too.
19 lines
819 B
PHP
19 lines
819 B
PHP
|
|
<div class="my-4"><br></div>
|
|
|
|
<!-- Footer -->
|
|
<footer class="fixed-bottom page-footer font-small mt-5">
|
|
<div class="row footer-copyright text-left bg-secondary text-white mt-5 py-3">
|
|
<!-- Copyright -->
|
|
<div class="col ml-4">
|
|
© 2018<?='2018' != date('Y')?'-' . date('Y'):'';?> Copyright <a href="https://brunofontes.net" class="link text-white-50" target="_blank">Bruno Fontes</a>
|
|
</div>
|
|
<div class="col mr-4 text-right">
|
|
<a href="{{ url('/lang/pt-br') }}" class="link text-white">Português</a>
|
|
<span class="d-none d-sm-inline"> | </span>
|
|
<span class="d-xs-block d-sm-none"> <br> </span>
|
|
<a href="{{ url('/lang/en') }}" class="link text-white">English</a>
|
|
</div>
|
|
<!-- Copyright -->
|
|
</div>
|
|
</footer>
|