Skip to content

Commit

Permalink
feat(footer.vue): add the privacy policy and terms of service links i…
Browse files Browse the repository at this point in the history
…n sidebar footer

add the privacy policy and terms of service links in sidebar footer

fix #237
  • Loading branch information
amoncaldas committed Oct 26, 2021
1 parent f05da0d commit 84baea7
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/fragments/footer/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,18 @@
<a target="_blank" href="https://github.com/GIScience/ors-map-client">v{{ appVersion }}</a>
</strong>
<span>&nbsp;© {{currentYear}} <strong>{{footerMainSiteName}}</strong></span>
<span class="hidden-sm-and-down"> | {{ $t('global.developedByIntro') }}
<span > | {{ $t('global.developedByIntro') }}
<strong>
<a class="hidden-sm-and-down" target="_blank" :href="footerLink">{{ $t('global.developedBy') }}</a>
<a target="_blank" :title="$t('global.developedBy')" :href="footerLink">{{ $t('global.developedBy') }}</a>
</strong>
</span><br>
<span>
<strong>
<a class="link" :title="$t('about.privacyPolicy')" :href="constants.links.privacyPolicy" target="_blank">{{$t('about.privacyPolicy')}}</a>
</strong>
&nbsp; &nbsp;
<strong>
<a class="link" :title="$t('about.termsOfService')" :href="constants.links.termsOfService" target="_blank">{{$t('about.termsOfService')}}</a>
</strong>
</span>
</p>
Expand Down

0 comments on commit 84baea7

Please sign in to comment.