diff options
author | Vitaly Takmazov | 2017-05-02 21:41:44 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-05-05 12:07:17 +0300 |
commit | dc3f40eab5b9ab848964a1ff262227b8b61c9e61 (patch) | |
tree | 1badaecd6ac7e7a2f20bb914ab9a3a4c74e7d83a /juick-www/src/main/webapp/WEB-INF/views | |
parent | 045ca0848c8ee7c771541a5829157531c782cf30 (diff) |
juick-www: Pebble's strictVariables
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views')
3 files changed, 4 insertions, 4 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/index.html b/juick-www/src/main/webapp/WEB-INF/views/index.html index 09297ef9..da2117a5 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/index.html +++ b/juick-www/src/main/webapp/WEB-INF/views/index.html @@ -63,7 +63,7 @@ </nav> </article> {% endfor %} -{% if next is not empty %} +{% if (next | default('')) is not empty %} {{ next | raw }} {% endif %} {% endblock %} diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/footer.html b/juick-www/src/main/webapp/WEB-INF/views/partial/footer.html index 491cf140..61267396 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/partial/footer.html +++ b/juick-www/src/main/webapp/WEB-INF/views/partial/footer.html @@ -11,7 +11,7 @@ <a href="https://www.facebook.com/JuickCom" rel="nofollow" class="ico32-fb">Facebook</a> </div> <div id="footer-left">juick.com © 2008-2017 - {% if links is not empty %} + {% if links | default ('') is not empty %} <br/>{{ i18n("messages","label.sponsors") }}: {{ links }} {% endif %} </div> @@ -24,7 +24,7 @@ ga('create','UA-385578-4','juick.com'); ga('require','displayfeatures'); ga('send','pageview'); - {% if (sapeon) %} + {% if (sapeon | default(false)) %} var _acic={dataProvider:10}; (function(){ var e=document.createElement('script');e.type='text/javascript';e.async=true;e.src='//www2.aci'+'nt.net/aci.js'; diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/navigation.html b/juick-www/src/main/webapp/WEB-INF/views/partial/navigation.html index 3fbfaf5a..998aa422 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/partial/navigation.html +++ b/juick-www/src/main/webapp/WEB-INF/views/partial/navigation.html @@ -9,7 +9,7 @@ </nav> <div id="search"> <form action="/"> - <input type="text" name="search" class="text" placeholder="Поиск" value="{{ search }}"/> + <input type="text" name="search" class="text" placeholder="Поиск" value="{{ search | default('') }}"/> </form> </div> <section id="headdiv"> |