diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-04 00:08:27 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-04 00:08:27 +0300 |
commit | 551391fad55507daaa8a081ae73f46cb3f932e26 (patch) | |
tree | f118802471fa1ebd20ae6c981a72a267f31b8a7d | |
parent | cc6b04f37028a421fc6878e6c4bbdf5a55aeda59 (diff) | |
download | popov.link-551391fad55507daaa8a081ae73f46cb3f932e26.tar.xz popov.link-551391fad55507daaa8a081ae73f46cb3f932e26.zip |
Added compression to the entire site
Signed-off-by: Valentin Popov <valentineus@gmail.com>
-rw-r--r-- | _layouts/default.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index aedca0a..ff58a5d 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,3 +1,7 @@ +--- +layout: compress +--- + <!DOCTYPE html> <html lang="ru"> @@ -7,7 +11,7 @@ {% include sidebar.html %} <div class="content container"> - {{ content }} + {{ content | normalize_whitespace }} </div> </body> |