* WIP: Redesign the default layout * Merge old & new default layouts * Fix login logic; add proper user controls dropdown * Fix latest version listing (#31) (#32) Co-authored-by: Aeledfyr <45501007+Aeledfyr@users.noreply.github.com> * First pass of design cleanup * Improve ad integration and fix light theme * Begin splitting up variables, change some styling to new mockup * Continue redesign progress * Work on some more pages * Add missing dark theme variables for text * Continue working on modularizing * Continue progress, redo pagination * Fix auth buttons in navbar layout * Continue progress * Continue progress more * Redo ModResult * Scope ModPage :irritater: * Continue Dashboard * Continue progress on Dashboard and cleanup * Add missing variables for dark theme * Small tweaks, cleanup, and continue mod page progress * Fix user not being able to see hidden mods that they own * Start reworking mod creation * Continue revamp of mod creation page * Yank v-html out * Hotfix markdown rendering and some spacing issues * Move legal; continue with mod creation; create reusable footer * Create README.md * Update README.md * Update README.md * Add in basic usage instructions * Fix some stuff * Continue with mod creation; fix some CSS errors * Start user page * Start transition to vue-select; fix a few bugs * Continue mod creation page * Finish mod pages * Add very raw version editing * Mod editing + creation * Fixed versions that were in processing causing a 404 (#39) Co-authored-by: Mikhail Oleynikov <falseresync@gmail.com> Co-authored-by: Aeledfyr <45501007+Aeledfyr@users.noreply.github.com> Co-authored-by: Jai A <jai.a@tuta.io> Co-authored-by: MulverineX <mulverin3@gmail.com> Co-authored-by: diabolical17 <calumproh28@gmail.com> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
80 lines
1.5 KiB
Vue
80 lines
1.5 KiB
Vue
<template>
|
|
<footer :class="{ centered }">
|
|
<span>
|
|
Modrinth is open source software. You may view the source code at
|
|
<a target="_blank" href="https://github.com/modrinth">our GitHub page</a>.
|
|
</span>
|
|
<ul>
|
|
<li>
|
|
<nuxt-link to="/legal/terms">Terms</nuxt-link>
|
|
</li>
|
|
<li>
|
|
<nuxt-link to="/legal/privacy">Privacy</nuxt-link>
|
|
</li>
|
|
<li>
|
|
<nuxt-link to="/about">About</nuxt-link>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li>
|
|
<a target="_blank" href="https://blog.modrinth.com">Blog</a>
|
|
</li>
|
|
<li>
|
|
<a target="_blank" href="https://discord.gg/gFRbNQ2">Discord</a>
|
|
</li>
|
|
<li>
|
|
<a target="_blank" href="https://twitter.com/modrinth">Twitter</a>
|
|
</li>
|
|
</ul>
|
|
<span> © Guavy LLC </span>
|
|
</footer>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
centered: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.centered {
|
|
align-items: center;
|
|
}
|
|
|
|
footer {
|
|
padding: 2rem 0 5rem 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
li {
|
|
margin-bottom: var(--spacing-card-sm);
|
|
&:not(:last-child)::after {
|
|
content: '•';
|
|
padding: 0;
|
|
margin: 0 var(--spacing-card-sm);
|
|
}
|
|
}
|
|
}
|
|
|
|
& > *:not(:last-child) {
|
|
margin-bottom: var(--spacing-card-sm);
|
|
}
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|