From 6929580f2c7db686f59add956b3fc376eaf823e4 Mon Sep 17 00:00:00 2001 From: Nick Anthony Date: Tue, 28 Sep 2021 20:23:04 -0500 Subject: [PATCH] Allow individual pages to specify their own title and description. --- _layouts/default.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index e2d1949..b6a5000 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -16,9 +16,9 @@
-

{{ site.title | default: site.github.repository_name }}

-

{{ site.description | default: site.github.project_tagline }}

- +

{{ page.title | default: site.title | default: site.github.repository_name }}

+

{{ page.description | default: site.description | default: site.github.project_tagline }}

+