diff options
author | Melody Horn <melody@boringcactus.com> | 2020-08-21 13:30:42 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-08-21 13:30:42 -0600 |
commit | f2b9d72bef2001025cab8afedfec6d4176d3ff7f (patch) | |
tree | 511901bbeb1c7c4fceb9d5df97c7d87031bfe2fb /_layouts/default.html | |
parent | fafa4140e35d53acc1f72e0c472c47af861ad98f (diff) | |
download | boringcactus.com-f2b9d72bef2001025cab8afedfec6d4176d3ff7f.tar.gz boringcactus.com-f2b9d72bef2001025cab8afedfec6d4176d3ff7f.zip |
structural tidying
Diffstat (limited to '_layouts/default.html')
-rw-r--r-- | _layouts/default.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index b9ebf24..3bd4d2b 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1" /> @@ -28,7 +28,7 @@ {% endif %} </header> <main> - <h1>{{ page.title }}</h1> + <h1>{{ page.title }}{% if page.date %} <small>({{ page.date | date_to_string }})</small>{% endif %}</h1> {{ content }} </main> </body> |