1
0
picturingjordan.com/config.toml
Alan Orth caf5b4f041
config.toml: Use yyyy/m/d for Persian dates
Apparently it is uncommon to pad with leading zeros. It would be
really cool if Go's date functions supported international date
formats so I could use Arabic and Persian numbers! Maybe I will
make a variable to do this in frontmatter.

See: https://en.wikipedia.org/wiki/Date_and_time_notation_in_Iran
2020-03-21 18:59:36 +02:00

83 lines
2.4 KiB
TOML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Hugo variables
#
baseurl = "https://picturingjordan.com/"
languageCode = "en-us"
title = "Picturing Jordan"
theme = "hugo-theme-bootstrap4-blog"
enableRobotsTXT = true
# number of posts to show on home/category/tag pages (Default: 10)
paginate = 3
copyright = "Except where otherwise noted, content on this site is licensed under a <a rel='license' href='https://creativecommons.org/licenses/by-sa/4.0/'>Creative Commons Attribution 4.0 International license</a>."
enableGitInfo = true
[permalinks]
posts = "/:year/:month/:slug/"
page = "/:slug/"
[params]
# Site author
author = "Alan Orth"
# Description/subtitle for homepage (can be Markdown)
description = "Sharing Jordan with the worldone picture at a time."
# Format dates with Go's time formatting
date_format = "Mon Jan 02, 2006"
# verification string for Google Webmaster Tools
google_verify_meta = "BAi69DROASu2b2mkVNA_EyUsobfH7Mq8BmSg2Rn-Zp4"
# verification string for Bing Webmaster Tools
bing_verify_meta = "2CA373095D945D1AA256B1CD8A3DF872"
# verification string for Yandex Webmaster Tools
yandex_verify_meta = "96b099438f75a04a"
# show sharing icons on pages/posts (default: true)
#sharingicons = true
[params.sidebar]
# Optional about block for sidebar (can be Markdown)
about = "*Picturing Jordan*, sharing Jordan with the worldone picture at a time.<br><br>[Read more →](/about)"
# How many posts to show on the sidebar (Default: 5)
#num_recent_posts = 2
[params.social]
# twitter handle for the site (ideally not a person, eg: nytimes, flickr, etc)
twitter = "picturingjordan"
[[menu.sidebar]]
name = "Alan in Kenya"
url = "https://alaninkenya.org"
[[menu.sidebar]]
name = "Mjanja Tech"
url = "https://mjanja.ch"
[[menu.sidebar]]
name = "English Bulgaria"
url = "https://englishbulgaria.net"
[markup]
[markup.blackfriday]
angledQuotes = true
# Default content language for Hugo 0.17's multilingual support (default is "en")
# See: https://github.com/spf13/hugo/blob/master/docs/content/content/multilingual.md
DefaultContentLanguage = "en"
# Languages to render
[languages.en]
[languages.bg]
# Bulgarian date format is dd.mm.yyyy
date_format = "02.01.2006"
[languages.ar]
# Arabic date format is dd/mm/yyyy
date_format = "02/01/2006"
[languages.fa]
# Persian date format is yyyy/mm/dd
date_format = "2006/1/2"
# vim: ts=2 sw=2 et