mirror of
https://github.com/getgrav/grav.git
synced 2026-03-05 03:51:50 +01:00
16 lines
773 B
YAML
16 lines
773 B
YAML
title: Grav # Name of the site
|
|
author:
|
|
name: John Appleseed # Default author name
|
|
email: 'john@email.com' # Default author email
|
|
taxonomies: [category,tag] # Arbitrary list of taxonomy types
|
|
blog:
|
|
route: '/blog' # Route to blog
|
|
metadata:
|
|
description: 'My Grav Site' # Site description
|
|
summary:
|
|
size: 300 # Maximum length of summary (characters)
|
|
routes:
|
|
/something/else: '/blog/sample-3' # Alias for /blog/sample-3
|
|
/another/one/here: '/blog/sample-3' # Another alias for /blog/sample-3
|
|
/new/*: '/blog/*' # Wildcard any /new/my-page URL to /blog/my-page Route
|