From 023b0137c4926e90dd84a01ee13a701011e14ac6 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 15 Mar 2021 22:24:27 -0500 Subject: [PATCH] Add bookend --- pages-eleventy/story.11ty.js | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/pages-eleventy/story.11ty.js b/pages-eleventy/story.11ty.js index 1502a41..e8713c1 100644 --- a/pages-eleventy/story.11ty.js +++ b/pages-eleventy/story.11ty.js @@ -22,6 +22,35 @@ export const makeDescription = function ( app ) { return `Latest reported support status of ${ app.name } on Apple Silicon and Apple M1 Processors when installed via Homebrew. ` } +function makeBookend () { + return { + "bookendVersion": "v1.0", + "shareProviders": [ + "system", + "email", + "twitter", + "sms" + ], + "components": [ + { + "type": "cta-link", + "links": [ + { + "text": "Search Other Apps", + "url": "doesitarm.com" + }, + { + "text": "Get App Updates", + "url": "doesitarm.com/embed-subscribe" + } + ] + } + ] + } +} + +const bookendJson = JSON.stringify( makeBookend() ) + export class Story { // or `async data() {` // or `get data() {` @@ -439,7 +468,12 @@ export class Story { - + + + +