惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog

博客园 - QDuck

Handlebars.js入门教程 GHOST CMS - Handlebars Themes - Further Reading GHOST CMS - Redirects GHOST CMS - Channels GHOST CMS - Content Collections GHOST CMS - Content Taxonomies GHOST CMS - Custom Routes GHOST CMS - Google AMP谷歌地图 GHOST CMS - URLs & Dynamic Routing GHOST CMS - Responsive Images 图片显示 GHOST CMS - Editor编辑器 GHOST CMS - Utility Helpers公用事业帮手 GHOST CMS - Data Helpers GHOST CMS - Functional Helpers功能助手 GHOST CMS - 标签Tag GHOST CMS - Author作者 GHOST CMS - Page 页面 GHOST CMS - Post 文章 GHOST CMS - 索引Index
GHOST CMS - Properties
QDuck · 2019-12-22 · via 博客园 - QDuck

Properties

This is a full list of all the available properties that can be used within your routes.yaml config file to manipulate your URL structure

Index of all available properties

PropertyDescription
template Determines which Handlebars template file will be used for this route. Defaults to index.hbs if not specified.
permalink The generated URL for any post within a collection. Can contain dynamic variables based on post data:
  • {id} - unique set of characters, eg. 5982d807bcf38100194efd67
  • {slug} - the post slug, eg. my-post
  • {year} - publication year, eg. 2019
  • {month} - publication month, eg. 04
  • {day} - publication day, eg. 29
  • {primary_tag} - slug of first tag listed in the post, eg. news
  • {primary_author} - slug of first author, eg. cameron
filter Extensively filter posts returned in collections and channels using the full power and syntax of the Ghost Content API

For example author:cameron+tag:newswill return all posts published by Cameron, tagged with 'News'. Mix and match to suit.

order Choose any number of fields and sort orders for your content:
  • published_at desc - default, newest post first
  • published_at asc - chronological, oldest first
  • featured desc, published_at desc -
    featured posts, then normal posts, newest first
data Fetch & associate data from the Ghost API with a specified route. The source route of the data will be redirected to the new custom route. 
  • post.slug - get data with => {{#post}}
  • page.slug - get data with => {{#page}}
  • tag.slug - get data with => {{#tag}}
  • author.slug - get data with => {{#author}}
rss Collections and channels come with automatically generated RSS feeds which can be disabled by setting the rss property to false
content_type Specify the mime-type for the current route, default: HTML
controller Add a custom controller to a route to perform additional functions. Currently the only supported value is channel