This is a Blade page. It will be rendered into static HTML and saved to `_site/index.html` by the `build` command.

Blade is the templating language from Laravel. You can use also use these for custom HTML and arbitrary PHP.
Below, you will find the source for one of the default homepages shipped with Hyde, a blog post feed.
@php($title = 'Latest Posts') {{-- HTML Page Title --}}
@extends('hyde::layouts.app') {{-- Extends the Hyde app layout, giving access to all the styles and more --}}
@section('content') {{-- We want the following to be in the `content` slot of the template --}}

<main id="content" class="mx-auto max-w-7xl py-12 px-8">
    <header class="lg:mb-12 xl:mb-16">
        <h1 class="text-3xl text-left leading-10 tracking-tight font-extrabold sm:leading-none mb-8 md:mb-12 md:text-4xl md:text-center lg:text-5xl text-gray-700 dark:text-gray-200">
            Latest Posts
        </h1>
    </header>

    <div class="max-w-3xl mx-auto">
        @include('hyde::components.blog-post-feed') {{-- Loads the component with our latest blog posts --}}
    </div>
</main>

@endsection