{% extends "base.html.twig" %} {% block metablock %} {% endblock %} {% block localstyle %} {% if not prev is empty %} {% endif %} {% if not next is empty %} {% endif %}

{{ webzine.name }} - {{ page.order }}

le {{ webzine.submittime|date('d/m/Y H:i') }}
{% for page in webzine.webzinepages %} {% set height=30*90/21 %}
{% endfor %} {% if sets|length > 1 %} {% set height=30*90/21 %}

Dans la même série

{% for set in sets %} {% if not set.webzinepages is empty %}
{% endif %} {% endfor %} {% endif %}
{% autoescape 'html' %} {{ webzine.description|raw }} {% endautoescape %}
{% endblock %} {% block localjavascript %} function resizeImage() { height=$(window).height()-70; $("#webzine_webzine_img").css({height:height,width:'auto'}); width=$(window).width()-90; if($("#webzine_webzine_img").width()>width) $("#webzine_webzine_img").css({width:width,height:'auto'}); height=$("#webzine_webzine_img").height(); $("#bigright").css({height:height,"line-height":height+"px"}); $("#bigleft").css({height:height,"line-height":height+"px"}); } $(document).ready(function() { $('body').imagesLoaded(function() { resizeImage(); $("#webzine_webzine_img").fadeIn(); }); }); $("body").keydown(function(e) { if(e.keyCode == 37) { // left var href = $('#bigleft').attr('href'); if(href!=null) window.location.href = href; } else if(e.keyCode == 39) { var href = $('#bigright').attr('href'); if(href!=null) window.location.href = href; } }); $(window).resize(function() { resizeImage(); }); {% endblock %}