src/pyams_skin/interfaces/templates/fullpage-modal-layout.pt
changeset 474 7bb070e90138
equal deleted inserted replaced
-1:000000000000 474:7bb070e90138
       
     1 <!DOCTYPE html>
       
     2 <html lang="en" i18n:domain="pyams_skin"
       
     3 	  tal:define="config tales:back_configuration;
       
     4 				  zmi tales:zmi_configuration;"
       
     5 	  tal:attributes="lang request.locale_name">
       
     6 <head>
       
     7 	<tal:var replace="structure tales:metas" />
       
     8 
       
     9 	<title tal:attributes="data-ams-title-prefix config.get_title_prefix(request)"
       
    10 		   tal:content="view.title | context.title | config.title | nothing"></title>
       
    11 
       
    12 	<tal:if define="icon config.icon | nothing; url tales:absolute_url(icon);" condition="icon">
       
    13 		<!-- Favorite icon -->
       
    14 		<link rel="shortcut icon" tal:attributes="href url" type="image/x-icon">
       
    15 		<link rel="icon" tal:attributes="href url" type="image/x-icon">
       
    16 	</tal:if>
       
    17 
       
    18 	<tal:var replace="tales:resources" />
       
    19 
       
    20 </head>
       
    21 <body tal:attributes="class zmi.body_css_class">
       
    22 
       
    23 	<!-- Content -->
       
    24 	<div id="content" style="opacity: 1;">
       
    25 		<!--[if lt IE 9]>
       
    26 		<h1 i18n:translate="">Your browser is too old. Please install version 9 or higher of Internet Explorer.</h1>
       
    27 		<![endif]-->
       
    28 		<div class="modal-dialog modal-medium"
       
    29 			 tal:attributes="class string:modal-dialog ${view.dialog_class | 'modal-medium'}">
       
    30 			<tal:var replace="structure provider:pagelet" />
       
    31 		</div>
       
    32 	</div>
       
    33 	<!-- end content -->
       
    34 
       
    35 	<!-- Javascript extensions -->
       
    36 	<tal:var content="structure provider:pyams.jsextensions" />
       
    37 	<!-- end Javascript extensions -->
       
    38 </body>
       
    39 </html>