From 8f3a42401f3213f11d181bd49594eb1be04fba82 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Wed, 4 May 2022 19:30:22 -0500 Subject: [PATCH] Add blank video template --- src/components/video-listing.astro | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/components/video-listing.astro diff --git a/src/components/video-listing.astro b/src/components/video-listing.astro new file mode 100644 index 0000000..cd3d354 --- /dev/null +++ b/src/components/video-listing.astro @@ -0,0 +1,35 @@ +--- +// Default Listing template for Apps, Games, and formulas + +import { + ListingDetails +} from '~/helpers/listing-page.js' + +import Aliases from '~/src/components/listing-parts/aliases.astro' +import RelatedLinks from '~/src/components/listing-parts/related-links.astro' +import Devices from '~/src/components/listing-parts/devices.astro' +import RelatedVideos from '~/src/components/listing-parts/related-videos.astro' +import Bundles from '~/src/components/listing-parts/bundles.astro' +import LastUpdated from '~/src/components/listing-parts/last-updated.astro' + +import AllUpdatesSubscribe from '~/components/all-updates-subscribe.vue' + +// import { makeLastUpdatedFriendly } from '~/helpers/parse-date' +// import { getAppEndpoint } from '~/helpers/app-derived.js' + +// import LinkButton from '~/components/link-button.vue' +// import VideoRow from '~/components/video/row.vue' + + +const { + listing +} = Astro.props + +const details = new ListingDetails( listing ) + +--- +
+ + Video Listing + +