Skip to content

Commit

Permalink
Use post titles as-is
Browse files Browse the repository at this point in the history
Previously, title was {{page.title | capitalize}} which is misleading. The Liquid capitalize filter only capitalizes the first letter of the first word and converts all other letters to lowercase. That is not always desirable.
  • Loading branch information
chrisyeh96 authored Jul 27, 2021
1 parent 8758f4a commit 84ebd90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _layouts/post.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: default
---
<h1>{{ page.title | capitalize }}</h1>
<h1>{{ page.title }}</h1>
<p class="subtitle">{{ page.date | date: "%B %-d, %Y" }}</p>


Expand Down

0 comments on commit 84ebd90

Please sign in to comment.