mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-07 23:13:57 -05:00
Revert FooterComponent.vue formatting changes - keep only copilot-instructions.md
Co-authored-by: joaovitoriasilva <8648976+joaovitoriasilva@users.noreply.github.com>
This commit is contained in:
@@ -1,57 +1,20 @@
|
||||
<template>
|
||||
<footer :class="{ 'py-5 bg-body-tertiary': enableBackground }">
|
||||
<div class="container">
|
||||
<p class="text-center text-muted">
|
||||
©
|
||||
{{
|
||||
new Date().getFullYear() === 2023 ? '2023' : '2023 - ' + new Date().getFullYear()
|
||||
}}
|
||||
Endurain •
|
||||
<a
|
||||
class="link-body-emphasis"
|
||||
href="https://github.com/joaovitoriasilva/endurain"
|
||||
role="button"
|
||||
><font-awesome-icon :icon="['fab', 'fa-github']"
|
||||
/></a>
|
||||
•
|
||||
<a class="link-body-emphasis" href="https://docs.endurain.com"
|
||||
><font-awesome-icon :icon="['fas', 'book']"
|
||||
/></a>
|
||||
•
|
||||
<a class="link-body-emphasis" href="https://fosstodon.org/@endurain"
|
||||
><font-awesome-icon :icon="['fab', 'fa-mastodon']"
|
||||
/></a>
|
||||
•
|
||||
<a class="link-body-emphasis" href="https://discord.gg/6VUjUq2uZR"
|
||||
><font-awesome-icon :icon="['fab', 'fa-discord']"
|
||||
/></a>
|
||||
• v0.13.4
|
||||
</p>
|
||||
<p class="text-center text-muted">
|
||||
<img
|
||||
src="/src/assets/strava/api_logo_cptblWith_strava_horiz_light.png"
|
||||
alt="Compatible with STRAVA image"
|
||||
height="25"
|
||||
/>
|
||||
•
|
||||
<img
|
||||
class="ms-2"
|
||||
src="/src/assets/garminconnect/Garmin_connect_badge_print_RESOURCE_FILE-01.png"
|
||||
alt="Works with Garmin Connect image"
|
||||
height="25"
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
<footer :class="{'py-5 bg-body-tertiary' : enableBackground}">
|
||||
<div class="container">
|
||||
<p class="text-center text-muted">© {{ new Date().getFullYear() === 2023 ? '2023' : '2023 - ' + new Date().getFullYear() }} Endurain • <a class="link-body-emphasis" href="https://github.com/joaovitoriasilva/endurain" role="button"><font-awesome-icon :icon="['fab', 'fa-github']" /></a> • <a class="link-body-emphasis" href="https://docs.endurain.com"><font-awesome-icon :icon="['fas', 'book']" /></a> • <a class="link-body-emphasis" href="https://fosstodon.org/@endurain"><font-awesome-icon :icon="['fab', 'fa-mastodon']" /></a> • <a class="link-body-emphasis" href="https://discord.gg/6VUjUq2uZR"><font-awesome-icon :icon="['fab', 'fa-discord']" /></a> • v0.13.4</p>
|
||||
<p class="text-center text-muted"><img src="/src/assets/strava/api_logo_cptblWith_strava_horiz_light.png" alt="Compatible with STRAVA image" height="25" /> • <img class="ms-2" src="/src/assets/garminconnect/Garmin_connect_badge_print_RESOURCE_FILE-01.png" alt="Works with Garmin Connect image" height="25" /></p>
|
||||
</div>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
props: {
|
||||
enableBackground: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
props: {
|
||||
enableBackground: {
|
||||
type: Boolean,
|
||||
default: true,
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user