Skip to content

Commit

Permalink
🔍 add canonical link for events (#2610)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKrisKrisu authored May 27, 2024
1 parent e04b436 commit 7c7367f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions resources/views/events/overview.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@extends('layouts.app')

@section('title', __('events.live'))
@section('canonical', route('events'))

@section('meta-robots', 'index')

Expand Down Expand Up @@ -107,12 +108,16 @@ class="form-control" required/>
<label class="form-label" for="event-requester-url">{{__('events.url')}}</label>
</div>
<div class="form-floating mb-2">
<input type="text" id="event-requester-hashtag" name="hashtag" class="form-control"/>
<label class="form-label" for="event-requester-hashtag">{{__('events.hashtag')}}</label>
<input type="text" id="event-requester-hashtag" name="hashtag"
class="form-control"/>
<label class="form-label"
for="event-requester-hashtag">{{__('events.hashtag')}}</label>
</div>
<div class="form-floating mb-2" id="station-autocomplete-container">
<input type="text" id="station-autocomplete" name="nearestStation" class="form-control"/>
<label class="form-label" for="station-autocomplete">{{__('events.closestStation')}}</label>
<input type="text" id="station-autocomplete" name="nearestStation"
class="form-control"/>
<label class="form-label"
for="station-autocomplete">{{__('events.closestStation')}}</label>
</div>
<button type="submit" class="btn btn-primary">{{__('events.request-button')}}</button>
</form>
Expand Down

0 comments on commit 7c7367f

Please sign in to comment.