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

fix: open internal footer links in same tab and change text #4973

Merged
merged 1 commit into from
Sep 4, 2020
Merged
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
12 changes: 6 additions & 6 deletions app/templates/components/footer-main.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="ui left aligned container inverted link list">
<strong class="item">{{t 'Use'}} {{this.settings.appName}}</strong>
<a class="item" href="https://support.eventyay.com" target="_blank" rel="noopener noreferrer">{{t 'How it Works'}}</a>
<a class="item" href="https://support.eventyay.com/pricing" rel="noopener noreferrer">{{t 'Pricing'}}</a>
<a class="item" href="{{href-to 'pricing'}}"> {{t 'Pricing'}} </a>
<a class="item" href="https://blog.fossasia.org/tags/open-event" rel="noopener noreferrer">{{t 'Event Blog'}}</a>
</div>
</div>
Expand All @@ -25,13 +25,13 @@
<div class="four wide column">
<div class="ui left aligned container inverted link list">
<strong class="item">{{t 'Find Events'}}</strong>
<a class="item" href="{{href-to 'explore'}}" target="_blank" rel="noopener noreferrer">
{{t 'Browse Local Events'}}
<a class="item" href="{{href-to 'explore'}}">
{{t 'Browse Events'}}
</a>
<a class="item" href="{{href-to 'attendee-app'}}" target="_blank" rel="noopener noreferrer">
{{t 'Get the'}} {{this.settings.appName}} {{t 'App'}}
<a class="item" href="{{href-to 'attendee-app'}}">
{{t 'Attendee App'}}
</a>
<a class="item" href="{{href-to 'organizer-app'}}" target="_blank" rel="noopener noreferrer">
<a class="item" href="{{href-to 'organizer-app'}}">
{{t 'Organizer App'}}
</a>
</div>
Expand Down