diff --git a/_includes/author-profile.html b/_includes/author-profile.html
index d07979f39d19..5fd8eecb5d0e 100644
--- a/_includes/author-profile.html
+++ b/_includes/author-profile.html
@@ -26,10 +26,10 @@
{{ author.name }}
{{ author.location }}
{% endif %}
{% if author.uri %}
- {{ site.data.ui-text[site.locale].website_label }}
+ {{ site.data.ui-text[site.locale].website_label | default: "Website" }}
{% endif %}
{% if author.email %}
- {{ site.data.ui-text[site.locale].email_label }}
+ {{ site.data.ui-text[site.locale].email_label | default: "Email" }}
{% endif %}
{% if author.keybase %}
Keybase
diff --git a/_includes/breadcrumbs.html b/_includes/breadcrumbs.html
index ded8bd6e0e3f..2b9f7a9e3e32 100644
--- a/_includes/breadcrumbs.html
+++ b/_includes/breadcrumbs.html
@@ -21,10 +21,10 @@
{% for crumb in crumbs offset: 1 %}
{% if forloop.first %}
- {{ site.data.ui-text[site.locale].breadcrumb_home_label }}
+ {{ site.data.ui-text[site.locale].breadcrumb_home_label | default: "Home" }}
- {{ site.data.ui-text[site.locale].breadcrumb_separator }}
+ {{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}
{% endif %}
{% if forloop.last %}
{{ page.title }}
@@ -34,7 +34,7 @@
{{ crumb | replace: '-', ' ' | replace: '%20', ' ' | capitalize }}
- {{ site.data.ui-text[site.locale].breadcrumb_separator }}
+ {{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}
{% endif %}
{% endfor %}
diff --git a/_includes/category-list.html b/_includes/category-list.html
index 77b135475faa..a2a623e5c54d 100644
--- a/_includes/category-list.html
+++ b/_includes/category-list.html
@@ -18,7 +18,7 @@
{% assign category_hashes = (page_categories | split: ',' | sort:0) %}
- {{ site.data.ui-text[site.locale].categories_label }}
+ {{ site.data.ui-text[site.locale].categories_label | default: "Categories:" }}
{% for hash in category_hashes %}
{% assign keyValue = hash | split: '#' %}
diff --git a/_includes/comments.html b/_includes/comments.html
index 03a8c64cf4bd..a01af60f2816 100644
--- a/_includes/comments.html
+++ b/_includes/comments.html
@@ -1,7 +1,7 @@
{% include base_path %}
diff --git a/_includes/footer.html b/_includes/footer.html
index a0ffe60e840e..53b99eb00733 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -17,8 +17,8 @@
{% if site.author.bitbucket %}
Bitbucket
{% endif %}
- {{ site.data.ui-text[site.locale].feed_label }}
+ {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/_includes/page__hero.html b/_includes/page__hero.html
index 6cc1ee7e2fce..cd0fa9fd79cd 100644
--- a/_includes/page__hero.html
+++ b/_includes/page__hero.html
@@ -31,7 +31,7 @@
{% else %}
diff --git a/_includes/paginator.html b/_includes/paginator.html
index 92450bbda0fb..2924f9a8f0c6 100644
--- a/_includes/paginator.html
+++ b/_includes/paginator.html
@@ -6,12 +6,12 @@
{% comment %} Link for previous page {% endcomment %}
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
- {{ site.data.ui-text[site.locale].pagination_previous }}
+ {{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}
{% else %}
- {{ site.data.ui-text[site.locale].pagination_previous }}
+ {{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}
{% endif %}
{% else %}
- {{ site.data.ui-text[site.locale].pagination_previous }}
+ {{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}
{% endif %}
{% comment %} First page {% endcomment %}
@@ -61,9 +61,9 @@
{% comment %} Link next page {% endcomment %}
{% if paginator.next_page %}
- {{ site.data.ui-text[site.locale].pagination_next }}
+ {{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}
{% else %}
- {{ site.data.ui-text[site.locale].pagination_next }}
+ {{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}
{% endif %}
diff --git a/_includes/post_pagination.html b/_includes/post_pagination.html
index 0a3acac594c4..cb2005ea9ef1 100644
--- a/_includes/post_pagination.html
+++ b/_includes/post_pagination.html
@@ -3,14 +3,14 @@
{% if page.previous or page.next %}
{% endif %}
\ No newline at end of file
diff --git a/_includes/read-time.html b/_includes/read-time.html
index 605dc0bc81f4..a45043c10a92 100644
--- a/_includes/read-time.html
+++ b/_includes/read-time.html
@@ -6,12 +6,12 @@
{% if site.words_per_minute %}
{% if words < 180 %}
- {{ site.data.ui-text[site.locale].less_than }} 1 {{ site.data.ui-text[site.locale].minute_read }}
+ {{ site.data.ui-text[site.locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
{% elsif words < 360 %}
- 1 {{ site.data.ui-text[site.locale].minute_read }}
+ 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
{% else %}
- {{ words | divided_by:site.words_per_minute }} {{ site.data.ui-text[site.locale].minute_read }}
+ {{ words | divided_by:site.words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
{% endif %}
{% else %}
- {{ site.data.ui-text[site.locale].undefined_wpm }}
+ {{ site.data.ui-text[site.locale].undefined_wpm | "Undefined parameter words_per_minute at _config.yml" }}
{% endif %}
\ No newline at end of file
diff --git a/_includes/seo.html b/_includes/seo.html
index 8189a8ad103b..a43115b9a3f4 100644
--- a/_includes/seo.html
+++ b/_includes/seo.html
@@ -18,7 +18,7 @@
{% assign canonical_url = page.url | replace: "index.html", "" | prepend: site.url %}
{% endif %}
-{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ site.title_separator }} {{ site.data.ui-text[site.locale].page }} {{ paginator.page }}{% endunless %}{% endif %}
+{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ site.title_separator }} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}{% endif %}
{% assign seo_description = page.description | default: page.excerpt | default: site.description %}
{% if seo_description %}
@@ -39,7 +39,7 @@
{% assign seo_author_twitter = seo_author_twitter | replace: "@", "" %}
{% endif %}
-
+
diff --git a/_includes/social-share.html b/_includes/social-share.html
index b2842865c25f..718e6f975953 100644
--- a/_includes/social-share.html
+++ b/_includes/social-share.html
@@ -2,14 +2,14 @@
{% if site.data.ui-text[site.locale].share_on_label %}
- {{ site.data.ui-text[site.locale].share_on_label }}
+ {{ site.data.ui-text[site.locale].share_on_label | default: "Share on" }}
{% endif %}
-
+
- Facebook
+ Facebook
- Google+
+ Google+
- LinkedIn
+ LinkedIn
\ No newline at end of file
diff --git a/_includes/tag-list.html b/_includes/tag-list.html
index 6e801f25ce82..80fcff3ed690 100644
--- a/_includes/tag-list.html
+++ b/_includes/tag-list.html
@@ -16,7 +16,7 @@
{% assign tag_hashes = (page_tags | split: ',' | sort:0) %}
- {{ site.data.ui-text[site.locale].tags_label }}
+ {{ site.data.ui-text[site.locale].tags_label | default: "Tags:" }}
{% for hash in tag_hashes %}
{% assign keyValue = hash | split: '#' %}
diff --git a/_layouts/single.html b/_layouts/single.html
index 8c5fd0f86e76..3629aa62637a 100644
--- a/_layouts/single.html
+++ b/_layouts/single.html
@@ -35,7 +35,7 @@
{{ content }}
- {% if page.link %}{% endif %}
+ {% if page.link %}{% endif %}
@@ -44,9 +44,9 @@ {{ site.data.ui-text[site.locale].meta_label }} {{ site.data.ui-text[site.locale].date_label }} {{ page.modified | date: "%B %d, %Y" }}
+ {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }} {{ page.modified | date: "%B %d, %Y" }}
{% elsif page.date %}
- {{ site.data.ui-text[site.locale].date_label }} {{ page.date | date: "%B %d, %Y" }}
+ {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }} {{ page.date | date: "%B %d, %Y" }}
{% endif %}
@@ -64,7 +64,7 @@ {{ site.data.ui-text[site.locale].meta_label }} 0 %}
{% if site.data.ui-text[site.locale].related_label %}
-
{{ site.data.ui-text[site.locale].related_label }}
+
{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}
{% endif %}
{% for post in site.related_posts limit:4 %}
diff --git a/index.html b/index.html
index 1a202656c700..1bea9770a7c0 100644
--- a/index.html
+++ b/index.html
@@ -5,7 +5,7 @@
{% include base_path %}
-
{{ site.data.ui-text[site.locale].recent_posts }}
+{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}
{% for post in paginator.posts %}
{% include archive-single.html %}
{{ site.data.ui-text[site.locale].comments_label }}
+{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}
{% case site.comments.provider %} {% when "disqus" %} diff --git a/_includes/feature_row b/_includes/feature_row index 10592b7e5fb5..b84f36b2118b 100644 --- a/_includes/feature_row +++ b/_includes/feature_row @@ -42,7 +42,7 @@ {% endif %} {% if f.url %} -{{ f.btn_label | default: site.data.ui-text[site.locale].more_label }}
+{{ f.btn_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}
{% endif %}