mirror of
				https://gitlab.com/PronounsPage/PronounsPage.git
				synced 2025-11-03 19:06:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
    <footer v-if="config.header">
 | 
						|
        <Separator icon="user-friends"/>
 | 
						|
        <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">
 | 
						|
                <p class="mb-2">
 | 
						|
                    <T>contact.authors</T>:
 | 
						|
                </p>
 | 
						|
 | 
						|
                <Authors/>
 | 
						|
 | 
						|
                <p>
 | 
						|
                    <T>footer.source</T>
 | 
						|
                </p>
 | 
						|
            </div>
 | 
						|
            <div class="text-center d-flex flex-column justify-content-center">
 | 
						|
                <p class="small mb-0">
 | 
						|
                    <Icon v="users"/>
 | 
						|
                    <T>footer.links</T>:
 | 
						|
                </p>
 | 
						|
                <div class="mb-3">
 | 
						|
                    <SquareButton
 | 
						|
                            v-for="link in [...config.contact.contacts, ...config.links.socials]" :key="link.url"
 | 
						|
                            :link="link.url"
 | 
						|
                            :aria-label="link.icon"
 | 
						|
                    >
 | 
						|
                        <Icon :v="link.icon" :set="link.iconSet || 'l'"/>
 | 
						|
                    </SquareButton>
 | 
						|
                    <br v-if="config.links.socials.length > 2"/>
 | 
						|
                    <SquareButton link="https://avris.it" aria-label="avris.it">
 | 
						|
                        <img src="~assets/avris.svg" alt="Avris"/>
 | 
						|
                    </SquareButton>
 | 
						|
                    <SquareButton v-for="s in config.support.links" :key="s.url" :link="s.url" :aria-label="s.headline">
 | 
						|
                        <Icon :v="s.icon" :set="s.iconSet || 'l'"/>
 | 
						|
                    </SquareButton>
 | 
						|
                    <SquareButton link="https://gitlab.com/Avris/Zaimki" aria-label="GitLab">
 | 
						|
                        <Icon v="gitlab" set="b"/>
 | 
						|
                    </SquareButton>
 | 
						|
                </div>
 | 
						|
                <ul v-if="config.user.enabled" class="list-inline small">
 | 
						|
                    <li class="list-inline-item">
 | 
						|
                        <nuxt-link :to="`/${config.user.termsRoute}`">
 | 
						|
                            <Icon v="gavel"/>
 | 
						|
                            <T>terms.header</T>
 | 
						|
                        </nuxt-link>
 | 
						|
                    </li>
 | 
						|
                    <li class="list-inline-item">
 | 
						|
                        <nuxt-link to="/api">
 | 
						|
                            <Icon v="laptop-code"/>
 | 
						|
                            <T>api.header</T>
 | 
						|
                        </nuxt-link>
 | 
						|
                    </li>
 | 
						|
                </ul>
 | 
						|
                <Share/>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </footer>
 | 
						|
</template>
 |