Pages
Create standard pages like About, Contact, and Privacy Policy. Understand frontmatter, featured images, and page bundles.
Pages are for static, standalone content — About, Contact, Privacy Policy, Terms of Service, or any custom page that isn't part of a date-ordered collection.
Quick Start
- Open the Ownable sidebar in VS Code.
- Click + (Create) next to Pages.
- Enter a title and press Enter.
Install Ownable CMS for visual content management.
hugo new content/about.md- Navigate to the
content/folder. - Create a new
.mdfile (e.g.,about.md). - Add the frontmatter template below.
File Structure
Leaf Pages vs. Page Bundles
- Leaf page: A single
.mdfile — simple, good for plain text. - Page bundle: A folder with
index.md+ assets (images, PDFs). Use when you need images or attached files.
Frontmatter Template
---
title: About Me
date: 2024-01-01
type: page
# Optional
summary: "A short summary for SEO and social sharing."
image:
filename: featured.jpg
caption: "Photo by..."
# Draft mode (won't publish until set to false)
draft: false
---
Your Markdown content goes here.Featured Images
Place featured.jpg (or .png) in the page bundle folder:
The image is automatically detected — no frontmatter needed!
Reference an image from the assets/media/ folder:
image:
filename: my-image.jpg # Located in assets/media/
caption: "Photo credit: Unsplash"
focal_point: Smart # Smart, Center, Top, Left, Right, Bottom
preview_only: false # true = only show on listing, not on pageQuick Reference
| Field | Type | Description |
|---|---|---|
title | string | Page title (required) |
date | date | Publication date |
type | page | Content type (defaults to page) |
summary | string | Short summary for SEO |
image.filename | string | Featured image filename |
draft | bool | Hide from published site |
Was this page helpful?
Site Configuration
Configure global site settings including identity, navigation, footers, analytics, and feature integrations.
Blog Posts
Create date-ordered blog posts with categories, tags, authors, and featured images. Perfect for research updates, news, and tutorials.
From the makers of
© 2026 Lore Labs.