mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add blank video template
This commit is contained in:
parent
1652e99f8a
commit
8f3a42401f
1 changed files with 35 additions and 0 deletions
35
src/components/video-listing.astro
Normal file
35
src/components/video-listing.astro
Normal file
|
|
@ -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 )
|
||||
|
||||
---
|
||||
<section class="container space-y-8 py-32">
|
||||
|
||||
Video Listing
|
||||
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue