Skip to content

sakynasty/TalkShowTemplate

Repository files navigation

Template for Talk Shows / Programs & Films

Called "Your Talk Show (YTS)" or "Talk Show Template (TST)".

🚧 Important notice

Everyone has the right to use the code of the repo "TalkShowTemplate" by me nevertheless all quotations of the code and original design must remain effective by respect of the working hours on the site which you avoid thanks to that.

👀 Launch & Demo

Install & Launch Dev Server

git clone https://github.com/sakynasty/TalkShowTemplate
cd TalkShowTemplate
npm i
npm run dev

Check which adapter is right for you in production mode with the Astro Guides: Deploy.

Warning: If you don't need Astro's server side or "hybrid" mode, change "server"/"hybrid" to "static".

Open in StackBlitz Open in GitHub Codespaces

🧑‍🚀 Anecdote This repo was originally intended as a "rework" of the VSP, but in the end, it went from VSPRework to simply a template for talk shows / programs / films. Watch the comparison

new-homepage

🚀 Project Structure

Inside of my Astro project for VSP, you'll see the following folders and files:

/
├── public/
│   ├── assets/
│   │    └── img/
│   │        ├── FavEmission/ # Link to FavEmission Component
│   │        │   └── *.png-jpg
│   │        ├── HeadImage/ # Link to HeadImage Component
│   │        │   └── *.png-jpg
│   │        ├── JoinSocial/ # Link to JoinSocial Component
│   │        │   └── *.png-jpg
│   │        ├── LastPost/ # Link to LastPost Component
│   │        │   └── *.png-jpg
│   │        ├── Partner/ # Link to Partner Component
│   │        │   └── *.png-jpg
│   │        └── Staff/ # Link to Staff Component
│   │        └── *.webp
│   ├── fakeAPI/ # Fake API for LastPost Component
│   │   └── lastPost.json
│   └── favicon.svg
├── src/
│   ├── assets/
│   │    └── js/*.js
│   ├── components/
│   │    ├── Emissions/
│   │    │    ├── Head.astro
│   │    │    └── Video.astro
│   │    ├── LastPost/ # Link to LastPost Component
│   │    │    └── Card.astro
│   │    ├── AboutVSP.astro
│   │    ├── FavEmission.astro
│   │    ├── Footer.astro
│   │    ├── HeadImage.astro
│   │    ├── LastPost.astro
│   │    ├── Navbar.astro
│   │    ├── Partner.astro
│   │    └── StaffCard.astro
│   ├── layouts/
│   │   └── Layout.astro
│   └── pages/
│       ├── emission/
│       │   ├── kus-talk-show.astro
│       │   ├── personal-journey.astro
│       │   └── reportages.astro
│       ├── film/
│       │   ├── lost-in-the-metaverse.astro
│       │   └── wrong-person-bad-job.astro
│       ├── participer/
│       │   └── personal-journey.astro
│       ├── a-propos.astro
│       ├── contact.astro
│       └── index.astro
├── astro.config.mjs
├── tailwind.config.cjs
└── package.json

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3000
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro check
npm run astro -- --help Get help using the Astro CLI

👀 Want to learn more?

Feel free to check Astro documentation or contact me for help.