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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
博客园 - Franky
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
博客园 - 司徒正美
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
B
Blog RSS Feed
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
博客园_首页
S
SegmentFault 最新的问题
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
H
Help Net Security
MongoDB | Blog
MongoDB | Blog

Example blog

Ghost routing explained with routes.yaml examples — routes, collections & taxonomies Ghost redirects explained with practical redirects.yaml examples How to Serve JSON or XML Data in Ghost How to Change Your Default Post Template in Ghost Ghost Custom Theme Settings How to add Google Fonts to Ghost Themes How to Configure Ghost with Mailgun Ghost Theme Structure & Organization How to Make Custom Templates in Ghost Themes How to Install Ghost CMS via Ghost-CLI How to Add Syntax Highlighting to Ghost The best Ghost CMS hosting platforms Ghost 6.0 — Social Web and Native Ghost Analytics Ghost CMS Social web beta, email 2FA and more author social links How to keep custom design settings when updating your Ghost theme How to use the public preview card in Ghost How to add members-specific sections in Ghost How to customize the default content CTA in Ghost How to build a custom homepage in Ghost An overview of Ghost editor cards and and how they work Ghost CMS News: One-time payments & collecting sales tax How to customize the private site access template in Ghost How to add custom fonts in Ghost themes Ghost CMS News: Additional payment methods & internal linking How to use Code Injection in Ghost How to set meta data of your custom routes & collections in Ghost Ghost CMS News: TK reminders, ActivityPub and improvements Ghost CMS internationalization, custom fonts & spam protection Understanding and optimizing post and page settings in Ghost CMS Trigger the Ghost Portal popup based on page scroll progress
How to format dates and use the date helper in Ghost
Bright Themes · 2024-04-07 · via Example blog

Dates are more than just numbers on a calendar; they're the markers of relevance and recency that guide user engagement. Mastering date formatting in Ghost is essential for presenting content in a clear and compelling manner. In this guide, we'll explore practical techniques and tips to help you format dates effectively, ensuring your content stays timely, organized, and user-friendly.

Date formatting contexts

Date formatting in Ghost is useful in various contexts, all of which contribute to a better user experience and streamlined content management. Here are some key contexts where date formatting plays a crucial role:

  • post template -- Displaying the publication date of blog posts is essential for providing users with context about when the content was created or updated. Properly formatted dates help users understand the timeliness and relevance of the content.

  • archives and listings - Date formatting is vital in archive pages, where users may browse content based on specific dates or time ranges. Clear and consistent date presentation enables users to navigate content effectively and find relevant information quickly.

  • localization - Localized date formats ensure that users from different regions can understand the temporal information provided in the content, contributing to a more inclusive user experience.

  • SEO optimization - Properly formatted dates can also have SEO benefits, particularly in schema markup. Search engines use structured data to understand the content and context of web pages, including dates. Well-formatted dates can improve search engine visibility and attract more organic traffic.

Using the date helper

At its core, the {{date}} helper in Ghost is a versatile tool empowers users to display, format, and manipulate dates with ease. The date helper is using the Moment.js library.

Date helper properties:

  • format - the format property will define the output from the GraphHelpers. Check out all options from moment.js
  • locale and timezone - properties can be used to overwrite your site’s defaults
  • timeago - to output something like "2 days ago" instead of a date

Here are some examples:

  1. Default formatting
{{date published_at format="MMM DD, YYYY"}}
<!-- outputs: 'Mar 10, 2024' -->
  1. Using timeago
{{date published_at timeago="true"}}
<!-- outputs: '2 days ago' -->

Formatting options with moment.js

Here's an overview of tokens which serve as placeholders that Moment.js replaces with the corresponding values from the provided date or time. Combining these tokens in various ways allows for flexible and customizable date and time formatting in Moment.js:

Year

  • YYYY - Four-digit year (e.g., 2024).
  • YY - Two-digit year (e.g., 24).

Month

  • MM - Two-digit month (01 through 12).
  • MMM - Abbreviated month name (e.g., Jan, Feb).
  • MMMM - Full month name (e.g., January, February).

Day

  • DD - Two-digit day of the month (01 through 31).
  • ddd - Abbreviated day name (e.g., Mon, Tue).
  • dddd - Full day name (e.g., Monday, Tuesday).

Hours

  • HH - Two-digit hour using a 24-hour clock (00 through 23).
  • hh - Two-digit hour using a 12-hour clock (01 through 12).
  • h - Hour using a 12-hour clock (1 through 12).

Minutes

  • mm - Two-digit minute (00 through 59).

Seconds

  • ss - Two-digit second (00 through 59).

AM/PM:

  • A - Uppercase AM/PM (e.g., AM, PM).
  • a - Lowercase AM/PM (e.g., am, pm).

Examples

Here are just a selection of commonly used formats. Moment.js provides a wide range of formatting options to suit different requirements and preferences:

FormatDescriptionExample
YYYY-MM-DDYear-month-day2024-04-07
MM/DD/YYYYMonth/day/year04/07/2024
DD/MM/YYYYDay/month/year07/04/2024
MMM D, YYYYShort month name, day, yearApr 7, 2024
MMMM D, YYYYFull month name, day, yearApril 7, 2024
ddd, MMM D, YYYYDay name, short month, day, yearSat, Apr 7, 2024
dddd, MMMM D, YYYYFull day name, month, day, yearSaturday, April 7, 2024
YYYY-MM-DD HH:mm:ssDate and time with hours, minutes, seconds2024-04-07 12:30:45
h:mm AHours:minutes AM/PM12:30 PM
HH:mm24-hour hours:minutes12:30
MMM YYYYMonth and yearApr 2024
YYYYYear2024
MMMMonth abbreviationApr
DDay of month7

Conclusions

Mastering date formatting within Ghost is essential for presenting content clearly and compellingly. From post templates to SEO optimization, date formatting plays a vital role in enhancing user experience and streamlining content management. With the versatile Date Helper and Moment.js, content creators can effortlessly craft dynamic and personalized date displays.