diff --git a/_includes/analytics.html b/_includes/analytics.html
new file mode 100644
index 0000000..e69de29
diff --git a/_includes/footer.html b/_includes/footer.html
index 8c3de31..16aef29 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,11 +1,17 @@
diff --git a/_includes/formatted_date.html b/_includes/formatted_date.html
deleted file mode 100644
index 317eeba..0000000
--- a/_includes/formatted_date.html
+++ /dev/null
@@ -1,61 +0,0 @@
-{% comment %}
-See https://github.com/oncleben31/jekyll-date-basic-i18n/
-{% endcomment %}
-
-{% comment %}
-This include allows to translate the days and months in the date by using strings in _data/locales/[lang].yml
-This include can be called with three parameters:
- - include.date: the date to be processed
- - include.format: the date format. (If empty a default format will be used)
- - include.lang: lang to use for translation.
-{% endcomment %}
-
-{% comment %}
-If the parameter date format is empty the default format set in _config.yml is used.
-If there is no default in _config, "%b %-d, %Y" is used.
-{% endcomment %}
-
-{% assign date_format_to_be_translated = include.format | default: site.date_format | default: "%-d %b %Y" %}
-
-{% comment %}
-Init to have the indice of the day in the week (num_day) and the indice of the month in the year (num_mont)
-Init the lang parameter depending if it's set in the include call, in the page or in the site settings
-{% endcomment %}
-
-{% assign num_day = include.date | date: "%w" | plus: 0 %}
-{% assign num_month = include.date | date: "%-m" | plus: -1 %}
-{% assign lang = include.lang | default: page.lang | default: site.lang %}
-
-{% comment %}
-Use translated abbreviated weekday if "%a" is used in the format and the translation is available in _data/locales/[lang].yml
-{% endcomment %}
-
-{% if site.data.locales[lang].abbreviated_weekday[num_day] %}
- {% assign date_format_to_be_translated = date_format_to_be_translated | replace: "%a", site.data.locales[lang].abbreviated_weekday[num_day] %}
-{% endif %}
-
-{% comment %}
-Use translated full weekday if "%A" is used in the format and the translation is available in _data/locales/[lang].yml
-{% endcomment %}
-
-{% if site.data.locales[lang].full_weekday[num_day] %}
- {% assign date_format_to_be_translated = date_format_to_be_translated | replace: "%A", site.data.locales[lang].full_weekday[num_day] %}
-{% endif %}
-
-{% comment %}
-Use translated abbreviated month if "%b" is used in the format and the translation is available in _data/locales/[lang].yml
-{% endcomment %}
-
-{% if site.data.locales[lang].abbreviated_month[num_month] %}
- {% assign date_format_to_be_translated = date_format_to_be_translated | replace: "%b", site.data.locales[lang].abbreviated_month[num_month] %}
-{% endif %}
-
-{% comment %}
-Use translated abbreviated weekday if "%B" is used in the format and the translation is available in _data/locales/[lang].yml
-{% endcomment %}
-
-{% if site.data.locales[lang].full_month[num_month] %}
- {% assign date_format_to_be_translated = date_format_to_be_translated | replace: "%B", site.data.locales[lang].full_month[num_month] %}
-{% endif %}
-
-{{ include.date | date: date_format_to_be_translated }}
diff --git a/_sass/footer.scss b/_sass/footer.scss
index 93c6f59..8832709 100644
--- a/_sass/footer.scss
+++ b/_sass/footer.scss
@@ -6,24 +6,28 @@ body > footer {
footer {
display: grid;
grid-template-columns: 20% 60% 20%;
+ font-size: 80%;
+
+ * {
+ vertical-align: middle;
+ }
+
+ a {
+ display: inline-block;
+ background-repeat: no-repeat;
+ color: #424242
+ }
#footer-center {
align-self: center;
justify-self: center;
text-align: center;
- font-size: 80%;
}
#footer-right {
align-self: center;
justify-self: end;
-
- a {
- background-image: url(https://creativecommons.org/images/public/somerights20.png);
- width: 88px;
- height: 31px;
- display: block;
- background-repeat: no-repeat;
- }
+ padding-right: 3px;
+ font-size: 80%;
}
}
diff --git a/img/jekyll-tube-bw.png b/img/jekyll-tube-bw.png
new file mode 100644
index 0000000..e0c76d2
Binary files /dev/null and b/img/jekyll-tube-bw.png differ