Video Production Essentials
Master the fundamentals of video production with this practical guide covering planning, filming, editing, and distribution.
Rich, engaging layout for blog posts. Author bios, social sharing, schema markup—built for content marketing and SEO dominance.
Magazine layout is designed for blog posts and articles. It includes featured images, author bylines, social sharing, read time estimates, and automatic BlogPosting schema markup for better SEO. Perfect for content marketing.
Magazine layout is your blog post layout with rich metadata, social sharing, and SEO features. Here's how to create one:
---
# src/content/blog/my-first-post.md
layout: magazine
title: "Getting Started with Local SEO"
description: "Complete guide to local SEO for small businesses"
publishDate: 2025-10-28
author: "Jane Smith"
authorTitle: "SEO Specialist"
category: "SEO"
tags: ["local-seo", "google-my-business", "citations"]
heroImage: "/images/hero/local-seo.jpg"
heroImageAlt: "Local business on Google Maps"
---
## Your Content Here
Write your blog post content in Markdown... ---
// src/pages/blog/my-post.astro
import Layout from '@theme/layouts/Layout.astro';
import Hero from '@theme/components/sections/Hero.astro';
import AuthorBio from '@theme/components/ui/AuthorBio.astro';
import SocialShare from '@theme/components/ui/SocialShare.astro';
const title = 'Getting Started with Local SEO';
const description = 'Complete guide to local SEO...';
const publishDate = new Date('2025-10-28');
---
<Layout title={title} description={description}>
<Hero
variant="centered"
heading={title}
description={description}
heroImage="/images/hero/local-seo.jpg"
heroImageAlt="Local business on Google Maps"
/>
<article class="py-16 bg-white dark:bg-slate-950">
<div class="container mx-auto px-4 max-w-4xl">
<div class="prose prose-lg dark:prose-invert mx-auto">
<!-- Your content -->
</div>
<SocialShare title={title} />
<AuthorBio name="Jane Smith" title="SEO Specialist" />
</div>
</article>
</Layout> Author bio, publish date, read time
Built-in social share buttons
BlogPosting schema for rich snippets
Automatic related content suggestions
Each layout is optimized for specific content types. Choose the right one for your pages.