Skip to content
Snippets Groups Projects
Verified Commit 408ce5c1 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Added missing pages (and filled community pages)

parent 0a5ed64b
No related branches found
No related tags found
No related merge requests found
......@@ -6,22 +6,16 @@
<router-view/>
</main>
<footer>
<div :class="['navbar-menu', {'is-active': showNav}]">
<div class="navbar-end">
<div class="navbar-item">
<label for="language" class="label">
<translate translate-context="Label for language switcher">Language</translate>
</label>
<select id="language" name="language" v-model="$language.current">
<option
v-for="(language, key) in $language.available"
:key="key"
:value="key"
>{{ language }}</option>
</select>
</div>
</div>
</div>
<label for="language" class="label">
<translate translate-context="Label for language switcher">Language</translate>
</label>
<select id="language" name="language" v-model="$language.current">
<option
v-for="(language, key) in $language.available"
:key="key"
:value="key"
>{{ language }}</option>
</select>
</footer>
</div>
</template>
......
......@@ -16,10 +16,15 @@
</router-link>
</li>
<li class="pure-menu-item">
<router-link class="pure-menu-link" :to="{name: 'Community'}">
<router-link class="pure-menu-link" :to="{name: 'community'}">
<translate translate-context="Navigation/Link">Community</translate>
</router-link>
</li>
<li class="pure-menu-item">
<router-link class="pure-menu-link" :to="{name: 'contact'}">
<translate translate-context="Navigation/Link">Contact</translate>
</router-link>
</li>
</ul>
</nav>
</div>
......
......@@ -13,14 +13,32 @@ export default new Router({
name: "home",
component: Home
},
// {
// path: "/about",
// name: "about",
// // route level code-splitting
// // this generates a separate chunk (about.[hash].js) for this route
// // which is lazy-loaded when the route is visited.
// component: () =>
// import(/* webpackChunkName: "about" */ "./views/About.vue")
// }
{
path: "/community",
name: "community",
// route level code-splitting
// this generates a separate chunk (community.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
import(/* webpackChunkName: "community" */ "./views/Community.vue")
},
{
path: "/code-of-conduct",
name: "coc",
// route level code-splitting
// this generates a separate chunk (code-of-conduct.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
import(/* webpackChunkName: "code-of-conduct" */ "./views/CoC.vue")
},
{
path: "/contact",
name: "contact",
// route level code-splitting
// this generates a separate chunk (contact.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
import(/* webpackChunkName: "contact" */ "./views/Contact.vue")
}
]
});
<template>
<div class="row"></div>
</template>
<script>
export default {};
</script>
<template>
<div class="row">
<section>
<h1>
<translate translate-context="Content/Community/Header">Welcome to the Funkwhale community!</translate>
</h1>
<p>
<translate
translate-context="Content/Community/Paragraph"
>If you want to become a contributor, need support or simply would like to get in touch with the community, you're at the right place!</translate>
</p>
<p>
<translate
translate-context="Content/Community/Paragraph"
>Our community is the blood, muscle and bones of the project, and we're doing our best to keep it thriving, safe and inclusive. Our Code of Conduct applies to all the community spaces and you should read it before anything else.</translate>
</p>
<router-link class="pure-button" :to="{name: 'coc'}">
<translate translate-context="Content/Community/Link">Read our Code of Conduct</translate>
</router-link>
</section>
<section>
<h2>
<translate translate-context="Content/Community/Header">Community spaces</translate>
</h2>
<p>
<translate
translate-context="Content/Community/Paragraph"
>We maintain multiple spaces for the Funkwhale community. Some of them are generalist, while others are dedicated to specific topics and discussions.</translate>
</p>
<h3>
<translate translate-context="Content/Community/Header">Loomio forum</translate>
</h3>
<p>
<translate
translate-context="Content/Community/Paragraph"
>Our forum is the best place to go if you want to ask a question, get support, introduce yourself, start a new discussion, participate in decisions and more generally get a grasp of what's going on.</translate>
</p>
<a class="pure-button" href="https://governance.funkwhale.audio/" target="_blank">
<translate translate-context="Content/Community/Link">Visit the forum</translate>
</a>
<a
class="pure-button"
href="https://contribute.funkwhale.audio/guides/join-discussion"
target="_blank"
>
<translate
translate-context="Content/Community/Link"
>Read our step-by-step guide to join the discussion</translate>
</a>
<h3>
<translate translate-context="Content/Community/Header">Funkwhale community on Matrix.org</translate>
</h3>
<p>
<translate
translate-context="Content/Community/Paragraph"
>Matrix is a free and decentralized chat service. We have multiple rooms you can join:</translate>
</p>
<ul>
<li v-translate translate-context="Content/Community/List.Item">
<a
target="_blank"
href="https://riot.im/app/#/room/#funkwhale:matrix.org"
>#funkwhale:matrix.org</a>: for general discussions around the project, asking questions, introduce yourself
</li>
<li v-translate translate-context="Content/Community/List.Item">
<a
target="_blank"
href="https://riot.im/app/#/room/#funkwhale-troubleshooting:matrix.org"
>#funkwhale-troubleshooting:matrix.org</a>: for support discussions around Funkwhale (installation, usage, etc.)
</li>
<li v-translate translate-context="Content/Community/List.Item">
<a
target="_blank"
href="https://riot.im/app/#/room/#funkwhale-dev:matrix.org"
>#funkwhale-dev:matrix.org</a>: for development-related discussions
</li>
</ul>
<a
class="pure-button"
href="https://riot.im/app/#/group/+funkwhale:matrix.org"
target="_blank"
>
<translate translate-context="Content/Community/Link">Join our matrix rooms</translate>
</a>
<h3>
<translate translate-context="Content/Community/Header">GitLab instance</translate>
</h3>
<p>
<translate
translate-context="Content/Community/Paragraph"
>Development happens on our self-hosted GitLab instance, at dev.funkwhale.audio. Bug reports and merge requests should be opened here. We encourage you to open discussions around new features on the forum instead.</translate>
</p>
<a class="pure-button" href="https://dev.funkwhale.audio/funkwhale/" target="_blank">
<translate translate-context="Content/Community/Link">Visit our GitLab instance</translate>
</a>
</section>
<section>
<h2>
<translate translate-context="Content/Community/Header">Start contributing</translate>
</h2>
<p>
<translate
translate-context="Content/Community/Paragraph"
>We're always looking for help in various areas, including:</translate>
</p>
<ul>
<li>
<translate translate-context="Content/Community.Contribution types/List.Item">Translations</translate>
</li>
<li>
<translate
translate-context="Content/Community.Contribution types/List.Item"
>Communication</translate>
</li>
<li>
<translate
translate-context="Content/Community.Contribution types/List.Item"
>Organization and management</translate>
</li>
<li>
<translate
translate-context="Content/Community.Contribution types/List.Item"
>Design and development</translate>
</li>
<li>
<translate
translate-context="Content/Community.Contribution types/List.Item"
>Testing and bug reports</translate>
</li>
<li>
<translate
translate-context="Content/Community.Contribution types/List.Item"
>Documentation</translate>
</li>
</ul>
<p>
<translate
translate-context="Content/Community/Paragraph"
>If you have any question regarding the contribution process, please get in touch with us!</translate>
</p>
<a class="pure-button" href="https://pad.funkwhale.audio/roadmap" target="_blank">
<translate translate-context="Content/*/Link">Check out our roadmap</translate>
</a>
<a class="pure-button" href="https://contribute.funkwhale.audio" target="_blank">
<translate translate-context="Content/Community/Link">Check out the contribution guides</translate>
</a>
</section>
<section>
<h2>
<translate translate-context="Content/Community/Header">Community events</translate>
</h2>
<h3>
<translate translate-context="Content/Community/Header">Funkwhale Sync meetings</translate>
</h3>
<p>
<translate
translate-context="Content/Community/Paragraph"
>Every month, we have an open discussion with people involved in the project to discuss important topics and coordinate our efforts. This meeting happens on our Mumble audio server and is open to anyone. You can also join and participate via the text chat.</translate>
</p>
<p>
<translate
translate-context="Content/Community/Paragraph"
>Discussions themselves are in french, but the agenda and meeting notes are published in english on our forum, and we also live some room to non-french speakers to step in before the end of the meeting.</translate>
</p>
<a
class="pure-button"
href="https://pad.funkwhale.audio/funkwhale-sync-next-agenda"
target="_blank"
>
<translate translate-context="Content/Community/Link">Join the next Funkwhale Sync</translate>
</a>
</section>
</div>
</template>
<script>
export default {};
</script>
<template>
<div class="row"></div>
</template>
<script>
export default {};
</script>
......@@ -99,7 +99,7 @@
translate-context="Content/Home.Feature/Paragraph"
>Because of that, we can offer you an experience free of tracking and ads, and focus on what you need.</translate>
</p>
<router-link :to="{name: 'Community'}">
<router-link :to="{name: 'community'}">
<translate translate-context="Content/Home.Feature/Link">Discover our community</translate>
</router-link>
</div>
......@@ -168,7 +168,7 @@
<translate translate-context="Content/Home/Link">Become a backer</translate>
</a>
<a class="pure-button" href="https://pad.funkwhale.audio/roadmap" target="_blank">
<translate translate-context="Content/Home/Link">Check out our roadmap</translate>
<translate translate-context="Content/*/Link">Check out our roadmap</translate>
</a>
<p>
<translate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment