diff --git a/docs/_includes/blog_pagination.html b/docs/_includes/blog_pagination.html index e26da279b..6a1f33436 100644 --- a/docs/_includes/blog_pagination.html +++ b/docs/_includes/blog_pagination.html @@ -3,7 +3,7 @@
diff --git a/docs/_includes/nav.html b/docs/_includes/nav.html index 4481aca24..9c6fed06b 100644 --- a/docs/_includes/nav.html +++ b/docs/_includes/nav.html @@ -2,7 +2,7 @@
- +

{{ site.title }}

@@ -14,7 +14,12 @@ {% if item.category == "external" %} {{ item.title }} {% else %} - {{ item.title }} + {% comment %} + I removed `relative_url` from here for now until the problem we are having with + GitHub pages is resolved. Yes, I know this is exactly the same as the if above. + See: https://github.com/facebook/rocksdb/commit/800e51553ee029f29581f7f338cbc988c7f6da62 + {% endcomment %} + {{ item.title }} {% endif %} {% endfor %} diff --git a/docs/blog/all.html b/docs/blog/all.html index 08c856308..3be2d3bff 100644 --- a/docs/blog/all.html +++ b/docs/blog/all.html @@ -11,7 +11,7 @@ category: blog {% assign author = site.data.authors[post.author] %}

- {{ post.title }} + {{ post.title }} on {{ post.date | date: "%B %e, %Y" }} by {{ author.display_name }}

diff --git a/docs/css/main.scss b/docs/css/main.scss index ab3c4f3b7..48a3e14ef 100644 --- a/docs/css/main.scss +++ b/docs/css/main.scss @@ -5,40 +5,40 @@ @font-face { font-family: 'Lato'; - src: url("{{ '/static/fonts/LatoLatin-Italic.woff2' | relative_url }}") format('woff2'), - url("{{ '/static/fonts/LatoLatin-Italic.woff' | relative_url }}") format('woff'); + src: url("{{ '/static/fonts/LatoLatin-Italic.woff2' }}") format('woff2'), + url("{{ '/static/fonts/LatoLatin-Italic.woff' }}") format('woff'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Lato'; - src: url("{{ '/static/fonts/LatoLatin-Black.woff2' | relative_url }}") format('woff2'), - url("{{ '/static/fonts/LatoLatin-Black.woff' | relative_url }}") format('woff'); + src: url("{{ '/static/fonts/LatoLatin-Black.woff2' }}") format('woff2'), + url("{{ '/static/fonts/LatoLatin-Black.woff' }}") format('woff'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Lato'; - src: url("{{ '/static/fonts/LatoLatin-BlackItalic.woff2' | relative_url }}") format('woff2'), - url("{{ '/static/fonts/LatoLatin-BlackItalic.woff' | relative_url }}") format('woff'); + src: url("{{ '/static/fonts/LatoLatin-BlackItalic.woff2' }}") format('woff2'), + url("{{ '/static/fonts/LatoLatin-BlackItalic.woff' }}") format('woff'); font-weight: 900; font-style: italic; } @font-face { font-family: 'Lato'; - src: url("{{ '/static/fonts/LatoLatin-Light.woff2' | relative_url }}") format('woff2'), - url("{{ '/static/fonts/LatoLatin-Light.woff' | relative_url }}") format('woff'); + src: url("{{ '/static/fonts/LatoLatin-Light.woff2' }}") format('woff2'), + url("{{ '/static/fonts/LatoLatin-Light.woff' }}") format('woff'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Lato'; - src: url("{{ '/static/fonts/LatoLatin-Regular.woff2' | relative_url }}") format('woff2'), - url("{{ '/static/fonts/LatoLatin-Regular.woff' | relative_url }}") format('woff'); + src: url("{{ '/static/fonts/LatoLatin-Regular.woff2' }}") format('woff2'), + url("{{ '/static/fonts/LatoLatin-Regular.woff' }}") format('woff'); font-weight: normal; font-style: normal; }