Skip to content
Merged
Show file tree
Hide file tree
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
40 changes: 40 additions & 0 deletions src/assets/images/linkedin-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 10 additions & 8 deletions src/components/home/parts/BaseFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@
</div>
<p class="footer__tagline">Open data for more effective grantmaking</p>
</div>
<div class="footer__column-1 footer__social">
<a href="https://github.com/ThreeSixtyGiving/insights-ng" class="github-icon"><img
src="@/assets/images/github-logo.svg" alt="Check our Github"></a>
<a href="https://twitter.com/360Giving/" class="twitter-icon"><img
src="@/assets/images/twitter-logo.svg"
alt="Follow us on Twitter"></a>
</div>
<div class="footer__column-1 footer__social">
<a href="https://www.linkedin.com/company/360giving/" class="linkedin-icon"><img src="@/assets/images/linkedin-logo.svg" alt="Find us on LinkedIn"></a>
<a href="https://github.com/threesixtygiving/grantnav" class="github-icon"><img src="@/assets/images/github-logo.svg" alt="Check our Github"></a>
</div>
</div>

<div class="footer__row wrapper">
Expand Down Expand Up @@ -66,7 +63,7 @@
<div class="footer__row wrapper footer__small-print">

<div class="footer__column-2">
<p>© Copyright 2021 360Giving.<br>Licensed under a <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">Creative Commons Attribution 4.0 International License</a>.</p>
<p>&copy; Copyright {{current_year}} 360Giving.<br>Licensed under a <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">Creative Commons Attribution 4.0 International License</a>.</p>
</div>
<div class="footer__column-2 footer__policy-links hide-print">
<p><a href="https://www.threesixtygiving.org/privacy/">Privacy Notice</a> | <a href="https://www.threesixtygiving.org/terms-conditions/">Terms &amp; Conditions</a> | <a href="https://www.threesixtygiving.org/cookie-policy/">Cookie Policy</a> | <a href="https://www.threesixtygiving.org/take-down-policy/">Take Down Policy</a> | <a href="https://www.threesixtygiving.org/about/360giving-code-conduct/">Code of Conduct</a></p>
Expand All @@ -80,5 +77,10 @@
<script>
export default {
name: "BaseFooter",
data(){
return {
current_year: new Date().getUTCFullYear(),
}
},
};
</script>