1 module deepmagic.layout.code_black.body_block.main_block.older_ie_message.older_ie_message; 2 3 import deepmagic.layout.code_black; 4 5 class AppLayoutOlderIEMessage : DivElement{ 6 this(){ 7 super(); 8 this.init(); 9 } 10 11 override void init(){ 12 string comment = "[if lt IE 9]> 13 <div class='ie-block'> 14 <h1 class='Ops'> 15 Ooops! 16 </h1> 17 18 <p> 19 You are using an outdated version of Internet Explorer, upgrade to any of the following web browser in order to access the maximum functionality of this website. 20 </p> 21 22 <ul class='browsers'> 23 <li> 24 <a href='https://www.google.com/intl/en/chrome/browser/'> 25 <img src='/img/browsers/chrome.png' alt='' /> 26 <div>Google Chrome</div> 27 </a> 28 </li> 29 30 <li> 31 <a href='http://www.mozilla.org/en-US/firefox/new/'> 32 <img src='/img/browsers/firefox.png' alt='' /> 33 <div>Mozilla Firefox</div> 34 </a> 35 </li> 36 37 <li> 38 <a href='http://www.opera.com/computer/windows'> 39 <img src='/img/browsers/opera.png', alt='' /> 40 <div>Opera</div> 41 </a> 42 </li> 43 44 <li> 45 <a href='http://safari.en.softonic.com/'> 46 <img src='/img/browsers/safari.png' alt='' /> 47 <div>Safari</div> 48 </a> 49 </li> 50 51 <li> 52 <a href='http://windows.microsoft.com/en-us/internet-explorer/downloads/ie-10/worldwide-languages'> 53 <img src='/img/browsers/ie.png' alt='' /> 54 <div>Internet Explorer(New)</div> 55 </a> 56 </li> 57 </ul> 58 59 <p> 60 Upgrade your browser for a Safer and Faster web experience. 61 <br /> 62 Thank you for your patience... 63 </p> 64 65 </div> 66 <![endif]"; 67 this ~= new Comment(comment); 68 } 69 }