_defaults.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {# Heading for the list of related posts #}
  2. {% if not RELATED_POSTS_LABEL %}
  3. {% set RELATED_POSTS_LABEL = 'Related Posts' %}
  4. {% else %}
  5. {% set RELATED_POSTS_LABEL = RELATED_POSTS_LABEL %}
  6. {% endif %}
  7. {# Heading for the list of social profiles #}
  8. {% if not SOCIAL_PROFILE_LABEL %}
  9. {% set SOCIAL_PROFILE_LABEL = 'Contact' %}
  10. {% else %}
  11. {% set SOCIAL_PROFILE_LABEL = SOCIAL_PROFILE_LABEL %}
  12. {% endif %}
  13. {# Heading for the Email subscription form #}
  14. {% if not EMAIL_SUBSCRIPTION_LABEL %}
  15. {% set EMAIL_SUBSCRIPTION_LABEL = 'Email Newsletter' %}
  16. {% else %}
  17. {% set EMAIL_SUBSCRIPTION_LABEL = EMAIL_SUBSCRIPTION_LABEL %}
  18. {% endif %}
  19. {# Placeholder text for Email field #}
  20. {% if not EMAIL_FIELD_PLACEHOLDER %}
  21. {% set EMAIL_FIELD_PLACEHOLDER = 'Enter your email...' %}
  22. {% else %}
  23. {% set EMAIL_FIELD_PLACEHOLDER = EMAIL_FIELD_PLACEHOLDER %}
  24. {% endif %}
  25. {# Subscribe button title #}
  26. {% if not SUBSCRIBE_BUTTON_TITLE %}
  27. {% set SUBSCRIBE_BUTTON_TITLE = 'Subscribe' %}
  28. {% else %}
  29. {% set SUBSCRIBE_BUTTON_TITLE = SUBSCRIBE_BUTTON_TITLE %}
  30. {% endif %}
  31. {# Count of recent articles to be shown on the home page #}
  32. {% if not RECENT_ARTICLES_COUNT %}
  33. {% set RECENT_ARTICLES_COUNT = 10 %}
  34. {% else %}
  35. {% set RECENT_ARTICLES_COUNT = RECENT_ARTICLES_COUNT %}
  36. {% endif %}
  37. {# Label to show before Share Post links #}
  38. {% if not SHARE_POST_INTRO %}
  39. {% set SHARE_POST_INTRO = 'Share on:' %}
  40. {% else %}
  41. {% set SHARE_POST_INTRO = SHARE_POST_INTRO %}
  42. {% endif %}
  43. {# Label to show before comments #}
  44. {% if not COMMENTS_INTRO %}
  45. {% set COMMENTS_INTRO = '' %}
  46. {% else %}
  47. {% set COMMENTS_INTRO = COMMENTS_INTRO %}
  48. {% endif %}
  49. {# Author's twitter handle. Used in Twitter card meta data #}
  50. {% if not TWITTER_USERNAME %}
  51. {% set TWITTER_USERNAME = '' %}
  52. {% else %}
  53. {% set TWITTER_USERNAME = TWITTER_USERNAME %}
  54. {% endif %}
  55. {# Author's Google Plus Profile URL. Used for Google Authorship #}
  56. {% if not GOOGLE_PLUS_PROFILE_URL %}
  57. {% set GOOGLE_PLUS_PROFILE_URL = '' %}
  58. {% else %}
  59. {% set GOOGLE_PLUS_PROFILE_URL = GOOGLE_PLUS_PROFILE_URL %}
  60. {% endif %}
  61. {# Thumbnail image to show when homepage is shared on social media. It also
  62. serves as the default image for posts whose social_media_image is not set. #}
  63. {% if not SOCIAL_MEDIA_IMAGE %}
  64. {% set SOCIAL_MEDIA_IMAGE = '' %}
  65. {% else %}
  66. {% set SOCIAL_MEDIA_IMAGE = SOCIAL_MEDIA_IMAGE %}
  67. {% endif %}
  68. {# License of your site that appears in the footer of every page #}
  69. {% if not SITE_LICENSE %}
  70. {% set SITE_LICENSE = '' %}
  71. {% else %}
  72. {% set SITE_LICENSE = SITE_LICENSE %}
  73. {% endif %}
  74. {# Description of your site. It is used in meta tags so it will appear in
  75. search results and social media #}
  76. {% if not SITE_DESCRIPTION %}
  77. {% set SITE_DESCRIPTION = '' %}
  78. {% else %}
  79. {% set SITE_DESCRIPTION = SITE_DESCRIPTION %}
  80. {% endif %}