mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-11 08:07:38 +02:00
docs: add release announcement post (#617)
* docs: add release announcement post - add mailchimp newsletter form - fix wording - fix mobile - fix changelog links - fix release drafter to use our format (GH-$ISSUE) Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
This commit is contained in:
parent
d7daf274c0
commit
7fe4c5bdaf
9 changed files with 864 additions and 146 deletions
19
docs/.vuepress/theme/layouts/IndexPost.vue
Normal file
19
docs/.vuepress/theme/layouts/IndexPost.vue
Normal file
|
@ -0,0 +1,19 @@
|
|||
<template>
|
||||
<div>
|
||||
<ul id="default-layout">
|
||||
<li v-for="page in $pagination.pages">
|
||||
<router-link class="page-link" :to="page.path">{{
|
||||
page.title
|
||||
}}</router-link>
|
||||
</li>
|
||||
</ul>
|
||||
<div id="pagination">
|
||||
<router-link v-if="$pagination.hasPrev" :to="$pagination.prevLink"
|
||||
>Prev</router-link
|
||||
>
|
||||
<router-link v-if="$pagination.hasNext" :to="$pagination.nextLink"
|
||||
>Next</router-link
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue