Update awesome section for documentation
This commit is contained in:
parent
512814ac4c
commit
14591508b5
@ -62,7 +62,7 @@ ext {
|
||||
'commonmark' : "com.atlassian.commonmark:commonmark:$commonMarkVersion",
|
||||
'commonmark-strikethrough': "com.atlassian.commonmark:commonmark-ext-gfm-strikethrough:$commonMarkVersion",
|
||||
'commonmark-table' : "com.atlassian.commonmark:commonmark-ext-gfm-tables:$commonMarkVersion",
|
||||
'android-svg' : 'com.caverock:androidsvg:1.2.1',
|
||||
'android-svg' : 'com.caverock:androidsvg:1.4',
|
||||
'android-gif' : 'pl.droidsonroids.gif:android-gif-drawable:1.2.14',
|
||||
'jlatexmath-android' : 'ru.noties:jlatexmath-android:0.1.0',
|
||||
'okhttp' : 'com.squareup.okhttp3:okhttp:3.9.0',
|
||||
|
57
docs/.vuepress/components/AwesomeGroup.vue
Normal file
57
docs/.vuepress/components/AwesomeGroup.vue
Normal file
@ -0,0 +1,57 @@
|
||||
<template>
|
||||
<div class="awesome-group">
|
||||
<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>
|
||||
<img class="awesome-app-image" :src="app.image">
|
||||
<span v-if="app.description" class="awesome-app-description">{{ app.description }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import Link from './Link.vue'
|
||||
|
||||
export default {
|
||||
name: "AwesomeGroup",
|
||||
props: ["apps"],
|
||||
components: {
|
||||
Link
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.awesome-group {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.awesome-app {
|
||||
padding: 1em;
|
||||
background-color: #fff;
|
||||
margin: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
box-shadow: 0 0 0.1em 0.1em #eee;
|
||||
max-width: 30%;
|
||||
min-width: 100px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
.awesome-app-name {
|
||||
font-size: 1em;
|
||||
font-weight: 500;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
.awesome-app-image {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
display: block;
|
||||
}
|
||||
.awesome-app-description {
|
||||
margin-top: 1em;
|
||||
font-size: 0.85em;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
@ -82,6 +82,9 @@ and 2 themes included: Light & Dark. It can be downloaded from [releases](ht
|
||||
* [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.
|
||||
* [Boxcryptor](https://www.boxcryptor.com) - A software that adds AES-256 and RSA encryption to Dropbox, Google Drive, OneDrive and many other clouds.
|
||||
|
||||
<AwesomeGroup :apps="[
|
||||
{name: 'Cinopsys: Movies and Shows', image: 'http://drive.google.com/uc?export=view&id=1rD0HLd8tDUCe8QcVEG_iGvsJbFyozRhC', link: 'https://play.google.com/store/apps/details?id=com.cinopsys.movieshows'}
|
||||
]" />
|
||||
|
||||
<u>Extension/plugins</u>:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user