diff --git a/templates/base.html b/templates/base.html index 854ceb57..4b81c2d1 100644 --- a/templates/base.html +++ b/templates/base.html @@ -24,7 +24,6 @@ {% from '_includes/_defaults.html' import SITE_DESCRIPTION with context %} {% if SITE_DESCRIPTION %} - {% endif %} {% block meta_tags_in_head %} {% from '_includes/_defaults.html' import TWITTER_USERNAME with context %} diff --git a/templates/index.html b/templates/index.html index 0a90f1df..00d897a9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -6,7 +6,7 @@ {% block meta_tags_in_head %} {{ super() }} -{% from '_includes/_defaults.html' import LANDING_PAGE_TITLE with context %} +{% from '_includes/_defaults.html' import LANDING_PAGE_TITLE, FEATURED_IMAGE, SITE_DESCRIPTION with context %} {% if LANDING_PAGE_TITLE %} @@ -17,18 +17,19 @@ -{% from '_includes/_defaults.html' import FEATURED_IMAGE with context %} {% if FEATURED_IMAGE %} {% endif %} +{% if SITE_DESCRIPTION %} + + +{% endif %} {% endblock meta_tags_in_head %} {% block content %} -{% from '_includes/_defaults.html' import LANDING_PAGE_TITLE with context %} -{% from '_includes/_defaults.html' import PROJECTS with context %} -{% from '_includes/_defaults.html' import PROJECTS_TITLE with context %} +{% from '_includes/_defaults.html' import LANDING_PAGE_TITLE, PROJECTS, PROJECTS_TITLE with context %} {% set landing_page = namespace(page=false) %} {% for p in hidden_pages if p.slug == "landing-page-about-hidden" %}