Introduction to Hyde Posts#
Making blog posts with Hyde is easy. At the most basic level, all you need is to add a Markdown file to your _posts
folder.
To use the full power of the Hyde post module you'll want to add YAML Front Matter to your posts.
You can interactively scaffold posts with automatic front matter using the HydeCLI:
1php hyde make:post
Learn more about scaffolding posts, and other files, in the console commands documentation.
Short Video Tutorial#
Best Practices and Hyde Expectations#
Since Hyde does a lot of things automatically, there are some things you may need to keep in mind when creating blog posts so that you don't get unexpected results.
Filenames#
- Markdown post files are stored in the
_posts
directory - The filename is used as the filename for the compiled HTML
- Filenames should use
kebab-case-name
followed by the extension.md
- Files prefixed with
_underscores
are ignored by Hyde - Your post will be stored in
_site/posts/<identifier>.html
Example:
1✔ _posts/hello-world.md # Valid and will be compiled to _site/posts/hello-world.html
Front Matter#
Front matter is optional, but highly recommended for blog posts as the front matter is used to construct dynamic HTML markup for the post as well as meta tags and post feeds.
You are encouraged to look at the compiled HTML to learn and understand how your front matter is used. You can read more about the Front Matter format in the Front Matter documentation.
Blog Post Example#
Before digging deeper into all the supported options, let's take a look at what a basic post with front matter looks like.
Filepath: _posts/my-new-post.md 1--- 2title: My New Post 3description: A short description used in previews and SEO 4category: blog 5author: Mr. Hyde 6date: 2022-05-09 18:38 7--- 8 9## Write Your Markdown Here10 11Lorem ipsum dolor sit amet, consectetur adipisicing elit.12Autem aliquid alias explicabo consequatur similique,13animi distinctio earum ducimus minus, magnam.
Supported Front Matter Properties#
Post Front Matter Schema#
Here is a quick reference of the supported front matter properties. Keep on reading to see further explanations, details, and examples.
KEY NAME | VALUE TYPE | EXAMPLE / FORMAT |
---|---|---|
title |
string | "My New Post" |
description |
string | "A short description" |
category |
string | "my favorite recipes" |
date |
string | "YYYY-MM-DD [HH:MM]" |
author |
string/array | See author section |
image |
string/array | See image section |
Note that YAML here is pretty forgiving. In most cases you do not need to wrap strings in quotes. However, it can help in certain edge cases, for example if the text contains special Yaml characters, thus they are included here.
In the examples below, when there are multiple examples, they signify various ways to use the same property.
When specifying an array you don't need all the sub-properties. The examples generally show all the supported values.
Title#
1title: "My New Post"
Description#
1description: "A short description used in previews and SEO"
Category#
1category: blog
1category: "My favorite recipes"
Date#
1date: "2022-01-01"
1date: "2022-01-01 12:00"
Author#
Specify a page author, either by a username for an author defined in the authors
config, or by an arbitrary name,
or by an array of author data. See the Post Author section for more details.
Arbitrary name displayed "as is"#
1author: "Mr. Hyde"
Username defined in authors
config#
1author: mr_hyde
Array of author data#
1author:2 name: "Mr. Hyde"3 username: mr_hyde4 website: https://twitter.com/HydeFramework
When specifying an array you don't need all the sub-properties. The example just shows all the supported values.
Array values here will override all the values in the authors
config entry.
Image#
Specify a cover image for the post, either by a local image path for a file in the _media/
directory, or by a full URL.
Any array data is constructed into a dynamic fluent caption, and injected into post and page metadata.
Local image path#
When supplying an image source with a local image path, the image is expected to be stored in the _media/
directory.
Like all other media files, it will be copied to _site/media/
when the site is built, so Hyde will resolve links accordingly.
1image: image.jpg
Full URL#
Full URL starting with http(s)://
) or //
(protocol-relative).
The image source will be used as-is, and no additional processing is done.
1image: https://cdn.example.com/image.jpg
Data-rich image#
You can also supply an array of data to construct a rich image with a fluent caption.
1image:2 source: Local image path or full URL3 altText: "Alt text for image"4 titleText: "Tooltip title"5 copyright: "Copyright (c) 2022"6 licenseName: "CC-BY-SA-4.0"7 licenseUrl: https://example.com/license/8 authorUrl: https://photographer.example.com/9 authorName: "John Doe"
See posts/introducing-images for a detailed blog post with examples and schema information!
Using Images in Posts#
To use images stored in the _media/
directory, you can use the following syntax:
1![Image Alt](../media/image.png "Image Title")
Note the relative path since the blog post is compiled to posts/example.html
To learn more, check out the managing assets chapter on the topic.