poprawki w kontaktach

This commit is contained in:
Avris 2020-09-24 23:08:13 +02:00
parent 76c2699b62
commit b5bb4de6c5
4 changed files with 23 additions and 12 deletions

View File

@ -1,11 +1,8 @@
<template> <template>
<ul :class="{'list-unstyled': !expanded}"> <ul :class="{'list-unstyled': !expanded}">
<li v-for="author in authors"> <li v-for="author in authors" class="mb-2">
{{ author.name }} {{ author.name }}
(<nuxt-link :to="author.pronounsLink">{{ author.pronouns }}</nuxt-link>, (<nuxt-link :to="author.pronounsLink">{{ author.pronouns }}</nuxt-link>)
<a v-if="author.website" :href="author.website" target="_blank" rel="noopener"><Icon v="globe"/></a>
<a v-if="author.twitter" :href="'https://twitter.com/' + author.twitter" target="_blank" rel="noopener"><Icon v="twitter" set="b"/></a>
<a v-if="author.mail" :href="'mailto:' + author.mail" target="_blank" rel="noopener"><Icon v="envelope"/></a>)
<template v-for="(link, area, index) in author.areas"> <template v-for="(link, area, index) in author.areas">
<Spaceless> <Spaceless>
@ -15,6 +12,19 @@
<span v-if="index < Object.keys(author.areas).length - 1">, </span> <span v-if="index < Object.keys(author.areas).length - 1">, </span>
</Spaceless> </Spaceless>
</template> </template>
<br/>
<a v-if="author.website" :href="author.website" target="_blank" rel="noopener" class="badge badge-light border">
<Icon v="globe"/>
Blog
</a>
<a v-if="author.twitter" :href="'https://twitter.com/' + author.twitter" target="_blank" rel="noopener" class="badge badge-light border">
<Icon v="twitter" set="b"/>
Twitter
</a>
<a v-if="author.mail" :href="'mailto:' + author.mail" target="_blank" rel="noopener" class="badge badge-light border">
<Icon v="envelope"/>
Email
</a>
</li> </li>
</ul> </ul>
</template> </template>
@ -52,12 +62,13 @@
}, },
{ {
name: 'Zuzanna Sybilla Grzybowska', name: 'Zuzanna Sybilla Grzybowska',
pronouns: 'ona/ono', pronouns: 'on/ona/ono',
pronounsLink: '/ona&ono/jej', pronounsLink: '/on&ona&ono',
twitter: 'mykofanes', twitter: 'mykofanes',
mail: 'zuzannagrzybowska@protonmail.com', mail: 'zuzannagrzybowska@protonmail.com',
areas: { areas: {
neutratywy: '/neutratywy', neutratywy: '/neutratywy',
'social media': null,
}, },
}, },
], ],

View File

@ -4,7 +4,7 @@
<div class="d-flex flex-column flex-md-row justify-content-around mt-4 mb-5"> <div class="d-flex flex-column flex-md-row justify-content-around mt-4 mb-5">
<div class="small text-center d-flex flex-column justify-content-center"> <div class="small text-center d-flex flex-column justify-content-center">
<p class="mb-2"> <p class="mb-2">
<nuxt-link to="/neutratywy#autor">Autorza</nuxt-link> strony: <nuxt-link to="/neutratywy#autor">Autorza</nuxt-link> strony:
</p> </p>
<Authors/> <Authors/>
@ -16,7 +16,7 @@
<a href="https://mit.avris.it" target="_blank" rel="noopener">MIT</a>. <a href="https://mit.avris.it" target="_blank" rel="noopener">MIT</a>.
</p> </p>
</div> </div>
<div class="text-center"> <div class="text-center d-flex flex-column justify-content-center">
<p class="small mb-0"> <p class="small mb-0">
<Icon v="users"/> <Icon v="users"/>
Kontakt, social media, wsparcie: Kontakt, social media, wsparcie:

View File

@ -56,13 +56,13 @@
<li class="my-2"> <li class="my-2">
<Icon v="instagram" set="b"/> <Icon v="instagram" set="b"/>
<a href="https://www.instagram.com/inkluzywnamowa/" target="_blank" rel="noopener"> <a href="https://www.instagram.com/inkluzywnamowa/" target="_blank" rel="noopener">
@inkluzywnamowa na Instagramie @inkluzywnamowa
</a> </a>
</li> </li>
<li class="my-2"> <li class="my-2">
<Icon v="facebook" set="b"/> <Icon v="facebook" set="b"/>
<a href="https://facebook.com/slownikempatyczny" target="_blank" rel="noopener"> <a href="https://facebook.com/slownikempatyczny" target="_blank" rel="noopener">
Słownik Empatyczny Języka Polskiego na Facebooku Słownik Empatyczny Języka Polskiego
</a> </a>
</li> </li>
</ul> </ul>

View File

@ -7,7 +7,7 @@
<section class="mt-0"> <section class="mt-0">
<p class="mb-2"> <p class="mb-2">
<nuxt-link to="/neutratywy#autor">Autorza</nuxt-link> strony: <nuxt-link to="/neutratywy#autor">Autorza</nuxt-link> strony:
</p> </p>
<Authors expanded/> <Authors expanded/>
</section> </section>