-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a52c0b7
commit 4c3e127
Showing
7 changed files
with
97 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,53 @@ | ||
<template> | ||
<footer class="section rab-footer"> | ||
<div class="pt-5 divider" /> | ||
<div class="columns"> | ||
<div class="column is-11"> | ||
<p> | ||
© 2023 | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/jeremystucki" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Jeremy Stucki</a>, | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/unkelhoebbi" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Gregor Stuber</a>, | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/joshuabeny1999" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Joshua Hürzeler</a>, | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/Mafii" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Mathias Fischler</a>, | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/lzkndg" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Luzia Kündig</a>, | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/StefanieJaeger" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Stefanie Jäger</a>, | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/Venyla" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Vina Zahnd</a>, | ||
<a | ||
class="contributor-link" | ||
href="https://github.com/CHLinusch" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>Linus Flury</a> | ||
</p> | ||
</div> | ||
<div class="column is-1 ml-auto"> | ||
<hr> | ||
<footer class="flex items-center p-4 justify-between"> | ||
<div class="text-sm"> | ||
<span>© 2023 </span> | ||
<span | ||
v-for="(contributor, index) in contributors" | ||
:key="contributor.githubHandle" | ||
> | ||
<a | ||
class="mr-4 is-inline-block" | ||
href="https://github.com/lost-university" | ||
> | ||
<font-awesome-icon | ||
:icon="['fab', 'github']" | ||
size="2x" | ||
class="social" | ||
/> | ||
</a> | ||
</div> | ||
:href="'https://github.com/' + contributor.githubHandle" | ||
class="hover:text-purple-800" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
>{{ contributor.name }}</a> | ||
<span>{{ index != contributors.length - 1 ? ', ' : '' }}</span> | ||
</span> | ||
</div> | ||
<a | ||
class="hover:text-purple-800" | ||
href="https://github.com/lost-university" | ||
> | ||
<font-awesome-icon | ||
:icon="['fab', 'github']" | ||
size="2x" | ||
/> | ||
</a> | ||
</footer> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { defineComponent } from 'vue'; | ||
import type { Contributor } from "../helpers/types"; | ||
export default defineComponent({ | ||
name: 'PageFooter', | ||
props: { | ||
contributors: { | ||
type: Array<Contributor>, | ||
default: () => [ | ||
{ name: "Jeremy Stucki", githubHandle: "jeremystucki" }, | ||
{ name: "Gregor Stuber", githubHandle: "unkelhoebbi" }, | ||
{ name: "Joshua Hürzeler", githubHandle: "joshuabeny1999" }, | ||
{ name: "Mathias Fischler", githubHandle: "Mafii" }, | ||
{ name: "Luzia Kündig", githubHandle: "lzkndg" }, | ||
{ name: "Stefanie Jäger", githubHandle: "StefanieJaeger" }, | ||
{ name: "Vina Zahnd", githubHandle: "Venyla" }, | ||
{ name: "Linus Flury", githubHandle: "CHLinusch" }, | ||
], | ||
}, | ||
}, | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters