12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {# Heading for the list of related posts #}
- {% if not RELATED_POSTS_LABEL %}
- {% set RELATED_POSTS_LABEL = 'Related Posts' %}
- {% else %}
- {% set RELATED_POSTS_LABEL = RELATED_POSTS_LABEL %}
- {% endif %}
- {# Heading for the list of social profiles #}
- {% if not SOCIAL_PROFILE_LABEL %}
- {% set SOCIAL_PROFILE_LABEL = 'Contact' %}
- {% else %}
- {% set SOCIAL_PROFILE_LABEL = SOCIAL_PROFILE_LABEL %}
- {% endif %}
- {# Heading for the Email subscription form #}
- {% if not EMAIL_SUBSCRIPTION_LABEL %}
- {% set EMAIL_SUBSCRIPTION_LABEL = 'Email Newsletter' %}
- {% else %}
- {% set EMAIL_SUBSCRIPTION_LABEL = EMAIL_SUBSCRIPTION_LABEL %}
- {% endif %}
- {# Placeholder text for Email field #}
- {% if not EMAIL_FIELD_PLACEHOLDER %}
- {% set EMAIL_FIELD_PLACEHOLDER = 'Enter your email...' %}
- {% else %}
- {% set EMAIL_FIELD_PLACEHOLDER = EMAIL_FIELD_PLACEHOLDER %}
- {% endif %}
- {# Subscribe button title #}
- {% if not SUBSCRIBE_BUTTON_TITLE %}
- {% set SUBSCRIBE_BUTTON_TITLE = 'Subscribe' %}
- {% else %}
- {% set SUBSCRIBE_BUTTON_TITLE = SUBSCRIBE_BUTTON_TITLE %}
- {% endif %}
- {# Count of recent articles to be shown on the home page #}
- {% if not RECENT_ARTICLES_COUNT %}
- {% set RECENT_ARTICLES_COUNT = 10 %}
- {% else %}
- {% set RECENT_ARTICLES_COUNT = RECENT_ARTICLES_COUNT %}
- {% endif %}
- {# Label to show before Share Post links #}
- {% if not SHARE_POST_INTRO %}
- {% set SHARE_POST_INTRO = 'Share on:' %}
- {% else %}
- {% set SHARE_POST_INTRO = SHARE_POST_INTRO %}
- {% endif %}
- {# Label to show before comments #}
- {% if not COMMENTS_INTRO %}
- {% set COMMENTS_INTRO = '' %}
- {% else %}
- {% set COMMENTS_INTRO = COMMENTS_INTRO %}
- {% endif %}
- {# Author's twitter handle. Used in Twitter card meta data #}
- {% if not TWITTER_USERNAME %}
- {% set TWITTER_USERNAME = '' %}
- {% else %}
- {% set TWITTER_USERNAME = TWITTER_USERNAME %}
- {% endif %}
- {# Author's Google Plus Profile URL. Used for Google Authorship #}
- {% if not GOOGLE_PLUS_PROFILE_URL %}
- {% set GOOGLE_PLUS_PROFILE_URL = '' %}
- {% else %}
- {% set GOOGLE_PLUS_PROFILE_URL = GOOGLE_PLUS_PROFILE_URL %}
- {% endif %}
- {# Thumbnail image to show when homepage is shared on social media. It also
- serves as the default image for posts whose social_media_image is not set. #}
- {% if not SOCIAL_MEDIA_IMAGE %}
- {% set SOCIAL_MEDIA_IMAGE = '' %}
- {% else %}
- {% set SOCIAL_MEDIA_IMAGE = SOCIAL_MEDIA_IMAGE %}
- {% endif %}
- {# License of your site that appears in the footer of every page #}
- {% if not SITE_LICENSE %}
- {% set SITE_LICENSE = '' %}
- {% else %}
- {% set SITE_LICENSE = SITE_LICENSE %}
- {% endif %}
- {# Description of your site. It is used in meta tags so it will appear in
- search results and social media #}
- {% if not SITE_DESCRIPTION %}
- {% set SITE_DESCRIPTION = '' %}
- {% else %}
- {% set SITE_DESCRIPTION = SITE_DESCRIPTION %}
- {% endif %}
|