mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
Merge remote-tracking branch 'origin/master' into dev
This commit is contained in:
commit
880063fa18
2 changed files with 5 additions and 4 deletions
|
@ -18,6 +18,7 @@ nav_order: 7
|
||||||
- [lakelogaztetxea.net](https://lakelogaztetxea.net)
|
- [lakelogaztetxea.net](https://lakelogaztetxea.net)
|
||||||
- [agenda.eskoria.eus](https://agenda.eskoria.eus/)
|
- [agenda.eskoria.eus](https://agenda.eskoria.eus/)
|
||||||
- [lubakiagenda.net](https://lubakiagenda.net/)
|
- [lubakiagenda.net](https://lubakiagenda.net/)
|
||||||
|
- [eventos.coletivos.org](https://eventos.coletivos.org/)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ v-container#event.pa-0.pa-sm-2
|
||||||
v-icon.float-right(v-if='event.parentId' color='success' v-text='mdiRepeat')
|
v-icon.float-right(v-if='event.parentId' color='success' v-text='mdiRepeat')
|
||||||
.title.text-h5.mb-5
|
.title.text-h5.mb-5
|
||||||
strong.p-name.text--primary(itemprop="name") {{event.title}}
|
strong.p-name.text--primary(itemprop="name") {{event.title}}
|
||||||
|
|
||||||
time.dt-start.text-h6(:datetime='event.start_datetime|unixFormat("YYYY-MM-DD HH:mm")' itemprop="startDate" :content="event.start_datetime|unixFormat('YYYY-MM-DDTHH:mm')")
|
time.dt-start.text-h6(:datetime='event.start_datetime|unixFormat("YYYY-MM-DD HH:mm")' itemprop="startDate" :content="event.start_datetime|unixFormat('YYYY-MM-DDTHH:mm')")
|
||||||
v-icon(v-text='mdiCalendar')
|
v-icon(v-text='mdiCalendar')
|
||||||
strong.ml-2 {{event|when}}
|
strong.ml-2 {{event|when}}
|
||||||
|
@ -50,7 +50,7 @@ v-container#event.pa-0.pa-sm-2
|
||||||
v-icon(v-text='mdiCalendarExport')
|
v-icon(v-text='mdiCalendarExport')
|
||||||
v-btn.ml-2(v-if='hasMedia' large icon :title="$t('event.download_flyer')" color='primary' :aria-label="$t('event.download_flyer')"
|
v-btn.ml-2(v-if='hasMedia' large icon :title="$t('event.download_flyer')" color='primary' :aria-label="$t('event.download_flyer')"
|
||||||
:href='event | mediaURL("download")')
|
:href='event | mediaURL("download")')
|
||||||
v-icon(v-text='mdiFileDownloadOutline')
|
v-icon(v-text='mdiFileDownloadOutline')
|
||||||
|
|
||||||
.p-description.text-body-1.pa-3.rounded(v-if='hasMedia && event.description' itemprop='description' v-html='event.description')
|
.p-description.text-body-1.pa-3.rounded(v-if='hasMedia && event.description' itemprop='description' v-html='event.description')
|
||||||
|
|
||||||
|
@ -222,7 +222,7 @@ export default {
|
||||||
{ property: 'twitter:title', content: this.event.title },
|
{ property: 'twitter:title', content: this.event.title },
|
||||||
{
|
{
|
||||||
property: 'twitter:image',
|
property: 'twitter:image',
|
||||||
content: this.$options.filters.mediaURL(this.event, 'thumb')
|
content: this.$options.filters.mediaURL(this.event)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
property: 'twitter:description',
|
property: 'twitter:description',
|
||||||
|
@ -230,7 +230,7 @@ export default {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
link: [
|
link: [
|
||||||
{ rel: 'image_src', href: this.$options.filters.mediaURL(this.event, 'thumb') },
|
{ rel: 'image_src', href: this.$options.filters.mediaURL(this.event) },
|
||||||
{
|
{
|
||||||
rel: 'alternate',
|
rel: 'alternate',
|
||||||
type: 'application/rss+xml',
|
type: 'application/rss+xml',
|
||||||
|
|
Loading…
Reference in a new issue