zblot
SUBTITLE
created // at :
Testing out tokens:
- general tokens
name
: The file’s name in lowercase.name-without-extension
: The file’s name in lowercase without the file extension.path
: The file’s path in lowercase. A blog post’s link cannot be identical to the path to its source file so combine this with other properties.path-without-extension
: The file’s path in lowercase without the file extension.stem
: A URL-friendly version of the file’s path without the file extension.size
: The file’s size in bytes.created
: The file’s creation date, as a Unix timestamp.updated
: The file’s modified date, as a Unix timestamp.metadata
: An object containing the metadata keys and values specified at the start of the file.slug
: A URL-friendly version of the post’s title.slug-without-diacritics
: A URL-friendly version of the post’s title without diacritics.page
: True if the file is a page, false otherwise.menu
: True if the file is on your blog’s menu, false otherwise.
- date tokens
YYYY
: Year, e.g. 1970 … 2030M
: Month of the year, e.g. 1 2 … 11 12MM
: Month of the year with a leading zeroMMMM
: Month of the year, e.g. January … DecemberD
: Day of the month, e.g. 1 2 … 30 31DD
: Day of the month with a leading zerodddd
: Day of the week, e.g. Sunday … SaturdayH
: Hour of the day, e.g. 0 1 … 22 23HH
: Hour of the day, e.g. 00 01 … 22 23h
: Hour of the day, e.g. 1 2 … 11 12hh
: Hour of the day, e.g. 01 02 … 11 12m
: Minute of the hour, e.g. 0 1 … 58 59mm
: Minute of the hour, e.g. 00 01 … 58 59a
: am or pmX
: Unix timestampx
: Unix millisecond timestamp
Source: Blot page on Link Format