email_notify_announces.html

 1   <!DOCTYPE html>
 2   
 3   <html xmlns="http://www.w3.org/1999/xhtml" lang="fr">
 4   	<head>
 5   		<link rel="stylesheet" href="${prod_url}css/bootstrap.min.css" type="text/css" />
 6   		<link rel="stylesheet" href="${prod_url}css/bootstrap-responsive.min.css" type="text/css"/>
 7   		<link rel="stylesheet"  href="${prod_url}css/page_template_styles.css" type="text/css" />
 8   	</head>
 9   	<body>
 10   		<div class="container">
 11   			<strong>Bonjour </strong>,<br />
 12   
 13   			<p>des nouvelles annonces viennentt d’être publiée :<br />
 14   
 15   
 16   			<#list list_announces as announce>
 17   				<div class="row-fluid">
 18   					<div class="span12">
 19   						<legend>
 20   							<a href="${prod_url}jsp/site/Portal.jsp?page=announce&action=view_announce&announce_id=${announce.id}">
 21   								${announce.title}
 22   							</a>
 23   						</legend>
 24   						<div class="row-fluid">
 25   							<#if announce.hasPictures>
 26   								<div class="span1">
 27   									<#list announce.listIdImageResponse as idImageResponse>
 28   										<#if idImageResponse_index == 0>
 29   											<a href="${prod_url}jsp/site/Portal.jsp?page=announce&action=view_announce&announce_id=${announce.id}">
 30   												<img src="${prod_url}image?resource_type=announce_img&id=${idImageResponse}" />
 31   											</a>
 32   										</#if>
 33   									</#list>
 34   								</div>
 35   							</#if>
 36   							<div class="span11">
 37   							    ${announce.description}
 38   					    	</div>
 39   					    </div>
 40   					</div>
 41   			    </div>
 42   		    </#list>
 43   	<br />L’intranaute peut &agrave; tout moment ajouter des abonnements ou les supprimer dans la rubrique « mes abonnements ».
 44   		</div>
 45   	</body>
 46   </html>