|
@@ -2,10 +2,10 @@
|
|
<footer class="footer">
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="container">
|
|
<div class="content has-text-centered">
|
|
<div class="content has-text-centered">
|
|
- <p>
|
|
|
|
|
|
+ <p class="socialIcons">
|
|
<a
|
|
<a
|
|
class="icon"
|
|
class="icon"
|
|
- href="https://github.com/Musare/MusareNode"
|
|
|
|
|
|
+ :href="`${this.socialLinks.github}`"
|
|
target="_blank"
|
|
target="_blank"
|
|
title="GitHub Repository"
|
|
title="GitHub Repository"
|
|
>
|
|
>
|
|
@@ -13,7 +13,7 @@
|
|
</a>
|
|
</a>
|
|
<a
|
|
<a
|
|
class="icon"
|
|
class="icon"
|
|
- href="https://twitter.com/MusareApp"
|
|
|
|
|
|
+ :href="`${this.socialLinks.twitter}`"
|
|
target="_blank"
|
|
target="_blank"
|
|
title="Twitter Account"
|
|
title="Twitter Account"
|
|
>
|
|
>
|
|
@@ -21,7 +21,7 @@
|
|
</a>
|
|
</a>
|
|
<a
|
|
<a
|
|
class="icon"
|
|
class="icon"
|
|
- href="https://www.facebook.com/MusareMusic/"
|
|
|
|
|
|
+ :href="`${this.socialLinks.facebook}`"
|
|
target="_blank"
|
|
target="_blank"
|
|
title="Facebook Page"
|
|
title="Facebook Page"
|
|
>
|
|
>
|
|
@@ -29,7 +29,7 @@
|
|
</a>
|
|
</a>
|
|
<a
|
|
<a
|
|
class="icon"
|
|
class="icon"
|
|
- href="https://discord.gg/Y5NxYGP"
|
|
|
|
|
|
+ :href="`${this.socialLinks.discord}`"
|
|
target="_blank"
|
|
target="_blank"
|
|
title="Discord Server"
|
|
title="Discord Server"
|
|
>
|
|
>
|
|
@@ -42,6 +42,17 @@
|
|
src="/assets/wordmark.png"
|
|
src="/assets/wordmark.png"
|
|
alt="Musare"
|
|
alt="Musare"
|
|
/></a>
|
|
/></a>
|
|
|
|
+ <p class="footerLinks">
|
|
|
|
+ <router-link title="About Musare" to="/about">
|
|
|
|
+ About
|
|
|
|
+ </router-link>
|
|
|
|
+ <router-link title="The Musare Team" to="/team">
|
|
|
|
+ Team
|
|
|
|
+ </router-link>
|
|
|
|
+ <router-link title="News" to="/news">
|
|
|
|
+ News
|
|
|
|
+ </router-link>
|
|
|
|
+ </p>
|
|
<p>
|
|
<p>
|
|
© Copyright Musare 2015 - 2019
|
|
© Copyright Musare 2015 - 2019
|
|
</p>
|
|
</p>
|
|
@@ -50,6 +61,26 @@
|
|
</footer>
|
|
</footer>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
+<script>
|
|
|
|
+export default {
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ socialLinks: {
|
|
|
|
+ github: "",
|
|
|
|
+ twitter: "",
|
|
|
|
+ facebook: "",
|
|
|
|
+ discord: ""
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ mounted: function() {
|
|
|
|
+ lofig.get("siteSettings.socialLinks", res => {
|
|
|
|
+ this.socialLinks = res;
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+</script>
|
|
|
|
+
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.content a:not(.button) {
|
|
.content a:not(.button) {
|
|
border: 0;
|
|
border: 0;
|
|
@@ -66,7 +97,8 @@
|
|
right: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
left: 0;
|
|
- height: 230px;
|
|
|
|
|
|
+ height: 240px;
|
|
|
|
+ padding: 40px 20px 40px;
|
|
border-radius: 33% 33% 0% 0% / 7% 7% 0% 0%;
|
|
border-radius: 33% 33% 0% 0% / 7% 7% 0% 0%;
|
|
box-shadow: 0 4px 8px 0 rgba(3, 169, 244, 0.65),
|
|
box-shadow: 0 4px 8px 0 rgba(3, 169, 244, 0.65),
|
|
0 6px 20px 0 rgba(3, 169, 244, 0.4);
|
|
0 6px 20px 0 rgba(3, 169, 244, 0.4);
|
|
@@ -80,17 +112,43 @@
|
|
margin-bottom: 15px;
|
|
margin-bottom: 15px;
|
|
width: 200px;
|
|
width: 200px;
|
|
}
|
|
}
|
|
-}
|
|
|
|
|
|
|
|
-.icon:hover {
|
|
|
|
- color: #90298c !important;
|
|
|
|
|
|
+ .socialIcons {
|
|
|
|
+ .icon {
|
|
|
|
+ height: 28px;
|
|
|
|
+ line-height: 28px;
|
|
|
|
+ width: 28px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .footerLinks {
|
|
|
|
+ :not(:last-child) {
|
|
|
|
+ border-right: solid 1px #03a9f4;
|
|
|
|
+ }
|
|
|
|
+ a {
|
|
|
|
+ padding: 0 5px;
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ color: #03a9f4;
|
|
|
|
+ }
|
|
|
|
+ a:hover {
|
|
|
|
+ color: #03a9f4;
|
|
|
|
+ text-decoration: underline;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
-.nightMode {
|
|
|
|
|
|
+@media only screen and (min-width: 992px) {
|
|
.footer {
|
|
.footer {
|
|
- background-color: rgb(51, 51, 51);
|
|
|
|
- .content {
|
|
|
|
- color: #e6e6e6;
|
|
|
|
|
|
+ height: 180px;
|
|
|
|
+ .socialIcons {
|
|
|
|
+ left: 0;
|
|
|
|
+ top: 35px;
|
|
|
|
+ position: absolute;
|
|
|
|
+ }
|
|
|
|
+ .footerLinks {
|
|
|
|
+ right: 0;
|
|
|
|
+ top: 35px;
|
|
|
|
+ position: absolute;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|