Skip to content

Commit cc0199c

Browse files
committed
BaseFooter: Remove twitter link and add linkedin add {{current_year}}
1 parent 436047b commit cc0199c

2 files changed

Lines changed: 50 additions & 8 deletions

File tree

Lines changed: 40 additions & 0 deletions
Loading

src/components/home/parts/BaseFooter.vue

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,10 @@
1717
</div>
1818
<p class="footer__tagline">Open data for more effective grantmaking</p>
1919
</div>
20-
<div class="footer__column-1 footer__social">
21-
<a href="https://github.com/ThreeSixtyGiving/insights-ng" class="github-icon"><img
22-
src="@/assets/images/github-logo.svg" alt="Check our Github"></a>
23-
<a href="https://twitter.com/360Giving/" class="twitter-icon"><img
24-
src="@/assets/images/twitter-logo.svg"
25-
alt="Follow us on Twitter"></a>
26-
</div>
20+
<div class="footer__column-1 footer__social">
21+
<a href="https://www.linkedin.com/company/360giving/" class="linkedin-icon"><img src="@/assets/images/linkedin-logo.svg" alt="Find us on LinkedIn"></a>
22+
<a href="https://github.com/threesixtygiving/grantnav" class="github-icon"><img src="@/assets/images/github-logo.svg" alt="Check our Github"></a>
23+
</div>
2724
</div>
2825

2926
<div class="footer__row wrapper">
@@ -66,7 +63,7 @@
6663
<div class="footer__row wrapper footer__small-print">
6764

6865
<div class="footer__column-2">
69-
<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>
66+
<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>
7067
</div>
7168
<div class="footer__column-2 footer__policy-links hide-print">
7269
<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>
@@ -80,5 +77,10 @@
8077
<script>
8178
export default {
8279
name: "BaseFooter",
80+
data(){
81+
return {
82+
current_year: new Date().getUTCFullYear(),
83+
}
84+
},
8385
};
8486
</script>

0 commit comments

Comments
 (0)