Last active
March 27, 2017 21:07
-
-
Save sethvincent/093b0a4d31c150f039365b72e25fac0b to your computer and use it in GitHub Desktop.
Revisions
-
sethvincent revised this gist
Mar 27, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ <meta name="description" content=" {% if page.description %} {{ page.description }} {% elsif post.description %} {{ post.description }} {% else %} {{ site.description }} -
sethvincent revised this gist
Mar 27, 2017 . 1 changed file with 23 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,24 @@ <!-- formatted --> <title> {% if page.title %} {{ page.title }} | {{ site.title}} {% elsif post.title %} {{ post.title }} | {{ site.title}} {% else %} {{ site.title }} | {{ site.description}} {% endif %} </title> <meta name="description" content=" {% if page.description %} {{ page.description }} {% else if post.description %} {{ post.description }} {% else %} {{ site.description }} {% endif %} "> <!-- condensed --> <title>{% if page.title %}{{ page.title }} | {{ site.title}}{% elsif post.title %}{{ post.title }} | {{ site.title}}{% else %}{{ site.title }} | {{ site.description}}{% endif %}</title> <meta name="description" content="{% if page.description %}{{ page.description }}{% else if post.description %}{{ post.description }}{% else %}{{ site.description }}{% endif %}"> -
sethvincent created this gist
Mar 27, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ <title>{% if page.title %}{{ page.title }} | {{ site.title}}{% elsif post.title %}{{ post.title }} | {{ site.title}}{% else %}{{ site.title }} | {{ site.description}}{% endif %}</title> <meta name="description" content="{% if page.description %}{{ page.description }}{% else if post.description %}{{ post.description }}{% else %}{{ site.description }}{% endif %}">