-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull out a couple of template variables
As part of this I've removed the `smartify` filter, which turns out to have a noticeable impact on performance -- from ~11s to ~8s on my MBA! This filter is really quite slow, and irrelevant for a site title that doesn't have anything in need of SmartyPants.
- Loading branch information
1 parent
4fead65
commit 89774da
Showing
3 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,18 +52,24 @@ liquid: | |
# (e.g. I don't want to set an empty `nav_section: ""` for every page | ||
# which doesn't belong to a section). | ||
|
||
# ================ | ||
# Remaining config | ||
|
||
# ================== | ||
# Template variables | ||
# ================== | ||
# | ||
# These variables aren't part of any third-party Jekyll plugin; they're | ||
# placeholders used in my templates. | ||
|
||
title: "alexwlchan" | ||
|
||
author: "Alex Chan" | ||
email: "[email protected]" | ||
|
||
description: "Alex Chan's personal blog" | ||
email: "[email protected]" | ||
url: "https://alexwlchan.net" | ||
|
||
description: "Alex Chan's personal website" | ||
|
||
# ================ | ||
# Remaining config | ||
|
||
date_format: "%-d %B %Y" | ||
|
||
permalink: "/:year/:title/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters