Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create footer.lava #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Themes/Agency/Assets/Lava/footer.lava
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!-- replace urls with your actual urls or set them in global atributes -->


<footer class="footer py-4">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-4 text-lg-start">Copyright &copy; {{ 'Global' | Attribute:'OrganizationName' }} 2021</div>
<div class="col-lg-4 my-3 my-lg-0">
<a class="btn btn-dark btn-social mx-2" href="{{ 'Global' | Attribute:'OrganizationTwitter' }}"><i class="fab fa-twitter"></i></a>
<a class="btn btn-dark btn-social mx-2" href="{{ 'Global' | Attribute:'OrganizationFacebook' }}"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-dark btn-social mx-2" href="{{ 'Global' | Attribute:'OrganizationLinkedIn' }}"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="col-lg-4 text-lg-end">
<a class="link-dark text-decoration-none me-3" href="{{ 'Global' | Attribute:'OrganizationPrivacy' }}">Privacy Policy</a>
<a class="link-dark text-decoration-none" href="{{ 'Global' | Attribute:'OrganizationTerms' }}">Terms of Use</a>
</div>
</div>
</div>
</footer>