mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
Merge branch 'fix-adress-field' into 'master'
Move adress field inside location on homepage. See merge request les/gancio!66
This commit is contained in:
commit
5a185dc47b
1 changed files with 8 additions and 7 deletions
|
@ -18,13 +18,14 @@
|
|||
<time class='d-none dt-end' v-if='event.end_datetime' itemprop="endDate"
|
||||
:content="$time.unixFormat(event.end_datetime,'yyyy-MM-dd\'T\'HH:mm')"> {{ $time.unixFormat(event.end_datetime)}}</time>
|
||||
|
||||
<nuxt-link class='place d-block p-location pl-0' text
|
||||
:to='`/place/${encodeURIComponent(event.place.name)}`'
|
||||
itemprop="location" itemscope itemtype="https://schema.org/Place">
|
||||
<v-icon v-text='mdiMapMarker'></v-icon>
|
||||
<span itemprop='name'>{{ event.place.name }}</span>
|
||||
</nuxt-link>
|
||||
<div class='d-none' itemprop='address'>{{ event.place.address }}</div>
|
||||
<div class='p-location' itemprop="location" itemscope itemtype="https://schema.org/Place">
|
||||
<nuxt-link class='place d-block pl-0' text
|
||||
:to='`/place/${encodeURIComponent(event.place.name)}`'>
|
||||
<v-icon v-text='mdiMapMarker'></v-icon>
|
||||
<span itemprop='name'>{{ event.place.name }}</span>
|
||||
</nuxt-link>
|
||||
<div class='d-none p-street-address' itemprop='address'>{{ event.place.address }}</div>
|
||||
</div>
|
||||
</v-card-text>
|
||||
|
||||
<v-card-actions class='flex-wrap'>
|
||||
|
|
Loading…
Reference in a new issue