diff --git a/slinc/docs/_layouts/blog-page.html b/slinc/docs/_layouts/blog-page.html
index 71ee7b0a..61ff0cdd 100644
--- a/slinc/docs/_layouts/blog-page.html
+++ b/slinc/docs/_layouts/blog-page.html
@@ -6,10 +6,12 @@
{{page.title}}
-
+{% assign imageDefined = page.header-image | size %}
+{% if imageDefined != 0 %}
+{% endif %}
{{content}}
\ No newline at end of file
diff --git a/slinc/docs/blog/_posts/2022-02-04-V0-1-1-Release.md b/slinc/docs/blog/_posts/2022-02-04-V0-1-1-Release.md
index 17084938..10a8a5f0 100644
--- a/slinc/docs/blog/_posts/2022-02-04-V0-1-1-Release.md
+++ b/slinc/docs/blog/_posts/2022-02-04-V0-1-1-Release.md
@@ -13,7 +13,7 @@ I'm proud to announce the first patch release of Slinc. While it doesn't contain
* A simplistic blas binding was added to the project. Check [gitlab.com/mhammons/slinc] to see it.
* Bindings are now cached, increasing performance exponentially, and allowing slinc to beat jblas by a factor of 1.5x on the same data.
* `bind` and `variadicBind` have been deprecated for `accessNative` and `accessNativeVariadic`. Please read [binding C methods](/docs/docs/usage/binding-c-methods.md) for more information.
-* `Library` has been deprecated for `CLibrary` and `LibraryLocation`. Please read [binding C methods](/docs/docs/usage/binding-c-methods.md) for more information.
+* `Library` has been deprecated for `CLibrary` and `LibraryLocation`. Please read [binding C methods](/docs/usage/binding-c-methods.md) for more information.
* camelCase method names are now parsed to snake_case depending on capitals placement. If you want to turn off this feature, use `RawNaming`.
* `WithPrefix` has been added, allowing to specify a function name prefix and cutting down on repeated function names.