voucher.twig (1216B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd"> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title>{{ title }}</title> 6 <style type="text/css"> 7 body { 8 color: #000000; 9 font-family: Arial, Helvetica, sans-serif; 10 } 11 body, td, th, input, textarea, select, a { 12 font-size: 12px; 13 } 14 p { 15 margin-top: 0px; 16 margin-bottom: 20px; 17 } 18 a, a:visited, a b { 19 color: #378DC1; 20 text-decoration: underline; 21 cursor: pointer; 22 } 23 a:hover { 24 text-decoration: none; 25 } 26 a img { 27 border: none; 28 } 29 #container { 30 width: 680px; 31 } 32 </style> 33 </head> 34 <body> 35 <div id="container"> 36 {% if image %} 37 <div style="float: right; margin-left: 20px;"><a href="{{ store_url }}" title="{{ store_name }}"><img src="{{ image }}" alt="{{ store_name }}" /></a></div> 38 {% endif %} 39 <div> 40 <p>{{ text_greeting }}</p> 41 <p>{{ text_from }}</p> 42 {% if message %} 43 <p>{{ text_message }}</p> 44 <p>{{ message }}</p> 45 {% endif %} 46 <p>{{ text_redeem }}</p> 47 <p><a href="{{ store_url }}" title="{{ store_name }}">{{ store_url }}</a></p> 48 <p>{{ text_footer }}</p> 49 </div> 50 </div> 51 </body> 52 </html>