This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

HeroContent Pennington.BlogSite

Hero block at the top of the blog homepage.

Properties

Description string
Hero subhead/body text.
Title string
Hero headline.

Constructors

HeroContent

#
public HeroContent(string Title, string Description)

Hero block at the top of the blog homepage.

Parameters

Title string
Hero headline.
Description string
Hero subhead/body text.

Pennington.BlogSite.HeroContent

namespace Pennington.BlogSite;

/// Hero block at the top of the blog homepage.
public record HeroContent
{
    /// Hero subhead/body text.
    
public string Description { get; set; }
/// Hero block at the top of the blog homepage.
public HeroContent(string Title, string Description)
; /// Hero headline.
public string Title { get; set; }
}