Attribute joke API in about page

This commit is contained in:
2023-04-30 22:47:50 +02:00
parent 2326fac973
commit 66a9d77c07

View File

@@ -1,4 +1,6 @@
<template lang="pug"> <template lang="pug">
- const JOKE_API_LINK = "https://github.com/15Dkatz/official_joke_api"
section section
h2 About h2 About
@@ -11,4 +13,14 @@ section
p p
| To make developing and building the project a breeze, the zero | To make developing and building the project a breeze, the zero
| configuration build tool parcel is used. | configuration build tool parcel is used.
p
| The
RouterLink(to="/joke") joke page
| is made possible by the
| #[a(href=JOKE_API_LINK target="_blank") Official Joke API].
</template> </template>
<style lang="sass" scoped>
a
text-decoration: underline
</style>