Add Stack app to awesome section of documentation
This commit is contained in:
parent
82cb42813a
commit
02aa16a6f2
@ -2,7 +2,7 @@
|
|||||||
<div class="awesome-group">
|
<div class="awesome-group">
|
||||||
<div v-for="app in apps" class="awesome-app">
|
<div v-for="app in apps" class="awesome-app">
|
||||||
<a :href="app.link" class="awesome-app-name" target="_blank" rel="noopener noreferrer">{{app.name}} <OutboundLink/></a>
|
<a :href="app.link" class="awesome-app-name" target="_blank" rel="noopener noreferrer">{{app.name}} <OutboundLink/></a>
|
||||||
<img class="awesome-app-image" :src="app.image">
|
<img class="awesome-app-image" :src="$withBase(app.image)">
|
||||||
<span v-if="app.description" class="awesome-app-description">{{ app.description }}</span>
|
<span v-if="app.description" class="awesome-app-description">{{ app.description }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
56
docs/.vuepress/components/AwesomeSection.vue
Normal file
56
docs/.vuepress/components/AwesomeSection.vue
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<AwesomeGroup :apps="apps" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AwesomeGroup from "./AwesomeGroup.vue";
|
||||||
|
export default {
|
||||||
|
name: "AwesomeSection",
|
||||||
|
components: {
|
||||||
|
AwesomeGroup,
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
apps: function () {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: "Nextcloud",
|
||||||
|
image: "/assets/apps/nextcloud.png",
|
||||||
|
link: "https://github.com/nextcloud/android",
|
||||||
|
description:
|
||||||
|
"A safe home for all your data. Access & share your files, calendars, contacts, mail & more from any device, on your terms.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Habitica",
|
||||||
|
image: "/assets/apps/habitica.png",
|
||||||
|
link:
|
||||||
|
"https://play.google.com/store/apps/details?id=com.habitrpg.android.habitica",
|
||||||
|
description:
|
||||||
|
"Treat your life like a game to stay motivated and organized! Habitica makes it simple to have fun while accomplishing goals.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Cinopsys: Movies and Shows",
|
||||||
|
image: "/assets/apps/cinopsys.png",
|
||||||
|
link:
|
||||||
|
"https://play.google.com/store/apps/details?id=com.cinopsys.movieshows",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Pure Writer",
|
||||||
|
image: "/assets/apps/purewriter.png",
|
||||||
|
link:
|
||||||
|
"https://play.google.com/store/apps/details?id=com.drakeet.purewriter",
|
||||||
|
description: "Never lose content editor & Markdown",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Stack",
|
||||||
|
image: "/assets/apps/stack.png",
|
||||||
|
link: "https://github.com/tylerbwong/stack",
|
||||||
|
description:
|
||||||
|
"An Android app for browsing Stack Overflow and other Stack Exchange sites",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
BIN
docs/.vuepress/public/assets/apps/stack.png
Normal file
BIN
docs/.vuepress/public/assets/apps/stack.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.5 KiB |
@ -100,13 +100,8 @@ and 2 themes included: Light & Dark. It can be downloaded from [releases](ht
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
|
<AwesomeSection />
|
||||||
|
|
||||||
<AwesomeGroup :apps="[
|
|
||||||
{name: 'Nextcloud', image: $withBase(`/assets/apps/nextcloud.png`), link: 'https://github.com/nextcloud/android', description: 'A safe home for all your data. Access & share your files, calendars, contacts, mail & more from any device, on your terms.'},
|
|
||||||
{name: 'Habitica', image: $withBase(`/assets/apps/habitica.png`), link: 'https://play.google.com/store/apps/details?id=com.habitrpg.android.habitica', description: 'Treat your life like a game to stay motivated and organized! Habitica makes it simple to have fun while accomplishing goals.'},
|
|
||||||
{name: 'Cinopsys: Movies and Shows', image: $withBase(`/assets/apps/cinopsys.png`), link: 'https://play.google.com/store/apps/details?id=com.cinopsys.movieshows'},
|
|
||||||
{name: 'Pure Writer', image: $withBase(`/assets/apps/purewriter.png`), link: 'https://play.google.com/store/apps/details?id=com.drakeet.purewriter', description: 'Never lose content editor & Markdown'}
|
|
||||||
]" />
|
|
||||||
|
|
||||||
* [Partico](https://partiko.app/) - Partiko is a censorship free social network.
|
* [Partico](https://partiko.app/) - Partiko is a censorship free social network.
|
||||||
* [FairNote](https://play.google.com/store/apps/details?id=com.rgiskard.fairnote) - simple and intuitive notepad app. It gives you speed and efficiency when you write notes, to-do lists, e-mails, or jot down quick ideas.
|
* [FairNote](https://play.google.com/store/apps/details?id=com.rgiskard.fairnote) - simple and intuitive notepad app. It gives you speed and efficiency when you write notes, to-do lists, e-mails, or jot down quick ideas.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user