mirror of
https://github.com/romancm/gamebrary
synced 2024-11-15 07:57:19 +00:00
show link to github in releases page
This commit is contained in:
parent
d506259a41
commit
e181b085ae
1 changed files with 13 additions and 2 deletions
|
@ -1,11 +1,22 @@
|
|||
<template lang="html">
|
||||
<b-container class="pt-3">
|
||||
<div class="mx-2">
|
||||
<div class="d-flex justify-content-between align-items-center mb-3">
|
||||
<h3 class="m-0">
|
||||
Releases
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<portal to="dock">
|
||||
<b-button
|
||||
href="https://github.com/romancm/gamebrary"
|
||||
target="_blank"
|
||||
:variant="darkTheme ? 'dark' : 'primary'"
|
||||
>
|
||||
<i class="fab fa-github fa-fw" aria-hidden />
|
||||
View in GitHub
|
||||
</b-button>
|
||||
</portal>
|
||||
|
||||
<b-card
|
||||
v-for="release in releases"
|
||||
:key="release.id"
|
||||
|
@ -29,7 +40,7 @@
|
|||
<vue-markdown :source="release.body" class="w-100 releases" />
|
||||
</b-card-text>
|
||||
</b-card>
|
||||
</b-container>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
Loading…
Reference in a new issue