mosaico 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (425) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/Gemfile +7 -0
  4. data/LICENSE +680 -0
  5. data/README.md +179 -0
  6. data/Rakefile +5 -0
  7. data/app/assets/images/mosaico/logo_transparent.png +0 -0
  8. data/app/assets/javascripts/mosaico/application.js.erb +51 -0
  9. data/app/assets/javascripts/mosaico/plugins/debug.js.erb +10 -0
  10. data/app/assets/javascripts/mosaico/plugins/logo.js.erb +10 -0
  11. data/app/assets/javascripts/mosaico/plugins/preview.js +85 -0
  12. data/app/assets/javascripts/mosaico/plugins/save.js.erb +72 -0
  13. data/app/assets/javascripts/mosaico/plugins/template_path.js.erb +22 -0
  14. data/app/assets/javascripts/mosaico/plugins/translations.js +10 -0
  15. data/app/assets/javascripts/mosaico/utilities.js +25 -0
  16. data/app/assets/stylesheets/mosaico/application.css +6 -0
  17. data/app/controllers/mosaico/application_controller.rb +17 -0
  18. data/app/controllers/mosaico/images_controller.rb +142 -0
  19. data/app/controllers/mosaico/projects_controller.rb +31 -0
  20. data/app/controllers/mosaico/templates_controller.rb +8 -0
  21. data/app/helpers/mosaico/application_helper.rb +7 -0
  22. data/app/models/mosaico/image.rb +9 -0
  23. data/app/models/mosaico/placeholder_image.rb +9 -0
  24. data/app/models/mosaico/project.rb +13 -0
  25. data/app/models/mosaico/uploaded_image.rb +26 -0
  26. data/app/views/layouts/mosaico/application.html.erb +13 -0
  27. data/app/views/mosaico/projects/new.html.erb +1 -0
  28. data/app/views/mosaico/projects/show.html.erb +1 -0
  29. data/app/views/mosaico/shared/_metadata.html.erb +12 -0
  30. data/config/routes.rb +12 -0
  31. data/db/migrate/20170817202255_add_images.rb +14 -0
  32. data/db/migrate/20170824233755_add_projects.rb +11 -0
  33. data/lib/mosaico.rb +100 -0
  34. data/lib/mosaico/engine.rb +72 -0
  35. data/lib/mosaico/local_backend.rb +23 -0
  36. data/lib/mosaico/local_image_backend.rb +7 -0
  37. data/lib/mosaico/local_placeholder_backend.rb +7 -0
  38. data/lib/mosaico/placeholder.png +0 -0
  39. data/lib/mosaico/template.rb +89 -0
  40. data/lib/mosaico/versafix_template.rb +43 -0
  41. data/lib/mosaico/version.rb +4 -0
  42. data/lib/tasks/makeThumbs.js.erb +57 -0
  43. data/lib/tasks/thumbs.rake +35 -0
  44. data/mosaico.gemspec +22 -0
  45. data/screenshot.png +0 -0
  46. data/vendor/assets/fonts/LiberationSans-Regular.ttf +0 -0
  47. data/vendor/assets/mosaico-0.16.0/mosaico/.jsbeautifyrc +6 -0
  48. data/vendor/assets/mosaico-0.16.0/mosaico/.jshintrc +8 -0
  49. data/vendor/assets/mosaico-0.16.0/mosaico/.travis.yml +6 -0
  50. data/vendor/assets/mosaico-0.16.0/mosaico/CONTRIBUTING.md +37 -0
  51. data/vendor/assets/mosaico-0.16.0/mosaico/Dockerfile +21 -0
  52. data/vendor/assets/mosaico-0.16.0/mosaico/Gruntfile.js +241 -0
  53. data/vendor/assets/mosaico-0.16.0/mosaico/LICENSE +680 -0
  54. data/vendor/assets/mosaico-0.16.0/mosaico/NOTICE.txt +87 -0
  55. data/vendor/assets/mosaico-0.16.0/mosaico/README.md +73 -0
  56. data/vendor/assets/mosaico-0.16.0/mosaico/backend/README.txt +23 -0
  57. data/vendor/assets/mosaico-0.16.0/mosaico/backend/main.js +162 -0
  58. data/vendor/assets/mosaico-0.16.0/mosaico/bower.json +76 -0
  59. data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico-material.css +7425 -0
  60. data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.css +7133 -0
  61. data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.debug.js +1517 -0
  62. data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.js +12828 -0
  63. data/vendor/assets/mosaico-0.16.0/mosaico/build/templates.js +15 -0
  64. data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.eot +0 -0
  65. data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.svg +685 -0
  66. data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.ttf +0 -0
  67. data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.woff +0 -0
  68. data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.woff2 +0 -0
  69. data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/byvoxmail.png +0 -0
  70. data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico-badge.gif +0 -0
  71. data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico-v.gif +0 -0
  72. data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico32.png +0 -0
  73. data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaicologo.png +0 -0
  74. data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/screenshot-orig.png +0 -0
  75. data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/screenshot.png +0 -0
  76. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/README.md +26 -0
  77. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-de.json +88 -0
  78. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-en.json +88 -0
  79. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-es.json +88 -0
  80. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-fr.json +88 -0
  81. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-it.json +88 -0
  82. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-nl.json +88 -0
  83. data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-sv.json +88 -0
  84. data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico-material.min.css +5 -0
  85. data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico-material.min.css.map +1 -0
  86. data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.css +5 -0
  87. data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.css.map +1 -0
  88. data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.js +1517 -0
  89. data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.js.map +147 -0
  90. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/canvas-to-blob.min.js +2 -0
  91. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery-ui.min.css +7 -0
  92. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery-ui.min.js +13 -0
  93. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-image.js +324 -0
  94. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-process.js +175 -0
  95. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-validate.js +122 -0
  96. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload.js +1482 -0
  97. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.iframe-transport.js +217 -0
  98. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.min.js +5 -0
  99. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.min.map +1 -0
  100. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.ui.touch-punch.min.js +11 -0
  101. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/knockout-jqueryui.min.js +1 -0
  102. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/knockout.js +123 -0
  103. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/load-image.all.min.js +2 -0
  104. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.eot +0 -0
  105. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.ttf +0 -0
  106. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.woff +0 -0
  107. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/stylesheet.css +9 -0
  108. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/advlist/plugin.js +101 -0
  109. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/advlist/plugin.min.js +1 -0
  110. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/anchor/plugin.js +55 -0
  111. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/anchor/plugin.min.js +1 -0
  112. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autolink/plugin.js +204 -0
  113. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autolink/plugin.min.js +1 -0
  114. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autoresize/plugin.js +162 -0
  115. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autoresize/plugin.min.js +1 -0
  116. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autosave/plugin.js +165 -0
  117. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autosave/plugin.min.js +1 -0
  118. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/bbcode/plugin.js +123 -0
  119. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/bbcode/plugin.min.js +1 -0
  120. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/charmap/plugin.js +462 -0
  121. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/charmap/plugin.min.js +1 -0
  122. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/code/plugin.js +60 -0
  123. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/code/plugin.min.js +1 -0
  124. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/css/prism.css +138 -0
  125. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/plugin.js +1319 -0
  126. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/plugin.min.js +1 -0
  127. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/colorpicker/plugin.js +112 -0
  128. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/colorpicker/plugin.min.js +1 -0
  129. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/contextmenu/plugin.js +100 -0
  130. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/contextmenu/plugin.min.js +1 -0
  131. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/directionality/plugin.js +64 -0
  132. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/directionality/plugin.min.js +1 -0
  133. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-cool.gif +0 -0
  134. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-cry.gif +0 -0
  135. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-embarassed.gif +0 -0
  136. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-foot-in-mouth.gif +0 -0
  137. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-frown.gif +0 -0
  138. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-innocent.gif +0 -0
  139. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-kiss.gif +0 -0
  140. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-laughing.gif +0 -0
  141. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-money-mouth.gif +0 -0
  142. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-sealed.gif +0 -0
  143. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-smile.gif +0 -0
  144. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-surprised.gif +0 -0
  145. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-tongue-out.gif +0 -0
  146. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-undecided.gif +0 -0
  147. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-wink.gif +0 -0
  148. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-yell.gif +0 -0
  149. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/plugin.js +65 -0
  150. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/plugin.min.js +1 -0
  151. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullpage/plugin.js +490 -0
  152. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullpage/plugin.min.js +1 -0
  153. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullscreen/plugin.js +154 -0
  154. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullscreen/plugin.min.js +1 -0
  155. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/hr/plugin.js +30 -0
  156. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/hr/plugin.min.js +1 -0
  157. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/image/plugin.js +630 -0
  158. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/image/plugin.min.js +1 -0
  159. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/imagetools/plugin.js +2944 -0
  160. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/imagetools/plugin.min.js +1 -0
  161. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/importcss/plugin.js +273 -0
  162. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/importcss/plugin.min.js +1 -0
  163. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/insertdatetime/plugin.js +121 -0
  164. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/insertdatetime/plugin.min.js +1 -0
  165. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/layer/plugin.js +225 -0
  166. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/layer/plugin.min.js +1 -0
  167. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/legacyoutput/plugin.js +208 -0
  168. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/legacyoutput/plugin.min.js +1 -0
  169. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/link/plugin.js +403 -0
  170. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/link/plugin.min.js +1 -0
  171. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/lists/plugin.js +965 -0
  172. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/lists/plugin.min.js +1 -0
  173. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/moxieplayer.swf +0 -0
  174. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/plugin.js +879 -0
  175. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/plugin.min.js +1 -0
  176. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/nonbreaking/plugin.js +53 -0
  177. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/nonbreaking/plugin.min.js +1 -0
  178. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/noneditable/plugin.js +101 -0
  179. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/noneditable/plugin.min.js +1 -0
  180. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/pagebreak/plugin.js +88 -0
  181. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/pagebreak/plugin.min.js +1 -0
  182. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/paste/plugin.js +1844 -0
  183. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/paste/plugin.min.js +1 -0
  184. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/preview/plugin.js +101 -0
  185. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/preview/plugin.min.js +1 -0
  186. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/print/plugin.js +32 -0
  187. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/print/plugin.min.js +1 -0
  188. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/save/plugin.js +98 -0
  189. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/save/plugin.min.js +1 -0
  190. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/searchreplace/plugin.js +609 -0
  191. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/searchreplace/plugin.min.js +1 -0
  192. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/spellchecker/plugin.js +1031 -0
  193. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/spellchecker/plugin.min.js +1 -0
  194. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/tabfocus/plugin.js +120 -0
  195. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/tabfocus/plugin.min.js +1 -0
  196. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/table/plugin.js +4400 -0
  197. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/table/plugin.min.js +2 -0
  198. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/template/plugin.js +276 -0
  199. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/template/plugin.min.js +1 -0
  200. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textcolor/plugin.js +297 -0
  201. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textcolor/plugin.min.js +1 -0
  202. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textpattern/plugin.js +268 -0
  203. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textpattern/plugin.min.js +1 -0
  204. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/css/visualblocks.css +135 -0
  205. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/plugin.js +86 -0
  206. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/plugin.min.js +1 -0
  207. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualchars/plugin.js +123 -0
  208. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualchars/plugin.min.js +1 -0
  209. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/wordcount/plugin.js +69 -0
  210. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/wordcount/plugin.min.js +1 -0
  211. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/Variables.less +196 -0
  212. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/content.inline.min.css +1 -0
  213. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/content.min.css +1 -0
  214. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/readme.md +1 -0
  215. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.eot +0 -0
  216. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.json +1277 -0
  217. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.svg +63 -0
  218. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.ttf +0 -0
  219. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.woff +0 -0
  220. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.eot +0 -0
  221. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.json +1972 -0
  222. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.svg +98 -0
  223. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.ttf +0 -0
  224. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.woff +0 -0
  225. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/anchor.gif +0 -0
  226. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/loader.gif +0 -0
  227. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/object.gif +0 -0
  228. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/trans.gif +0 -0
  229. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.ie7.min.css +1 -0
  230. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.json +79 -0
  231. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.min.css +1 -0
  232. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/content.inline.min.css +1 -0
  233. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/content.min.css +1 -0
  234. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.eot +0 -0
  235. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.svg +63 -0
  236. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.ttf +0 -0
  237. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.woff +0 -0
  238. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.eot +0 -0
  239. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.svg +129 -0
  240. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.ttf +0 -0
  241. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.woff +0 -0
  242. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/anchor.gif +0 -0
  243. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/loader.gif +0 -0
  244. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/object.gif +0 -0
  245. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/trans.gif +0 -0
  246. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/skin.ie7.min.css +1 -0
  247. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/skin.min.css +1 -0
  248. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/inlite/theme.js +1828 -0
  249. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/inlite/theme.min.js +1 -0
  250. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/modern/theme.js +934 -0
  251. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/modern/theme.min.js +1 -0
  252. data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/tinymce.min.js +14 -0
  253. data/vendor/assets/mosaico-0.16.0/mosaico/editor.html +63 -0
  254. data/vendor/assets/mosaico-0.16.0/mosaico/favicon.ico +0 -0
  255. data/vendor/assets/mosaico-0.16.0/mosaico/index.html +368 -0
  256. data/vendor/assets/mosaico-0.16.0/mosaico/package.json +92 -0
  257. data/vendor/assets/mosaico-0.16.0/mosaico/res/img/byvoxmail.png +0 -0
  258. data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico-badge.gif +0 -0
  259. data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico-v.gif +0 -0
  260. data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico32.png +0 -0
  261. data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaicologo.png +0 -0
  262. data/vendor/assets/mosaico-0.16.0/mosaico/res/img/screenshot-orig.png +0 -0
  263. data/vendor/assets/mosaico-0.16.0/mosaico/res/img/screenshot.png +0 -0
  264. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/README.md +26 -0
  265. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-de.json +88 -0
  266. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-en.json +88 -0
  267. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-es.json +88 -0
  268. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-fr.json +88 -0
  269. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-it.json +88 -0
  270. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-nl.json +88 -0
  271. data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-sv.json +88 -0
  272. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/Variables.less +196 -0
  273. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/content.inline.min.css +1 -0
  274. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/content.min.css +1 -0
  275. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/readme.md +1 -0
  276. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.eot +0 -0
  277. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.json +1277 -0
  278. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.svg +63 -0
  279. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.ttf +0 -0
  280. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.woff +0 -0
  281. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.eot +0 -0
  282. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.json +1972 -0
  283. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.svg +98 -0
  284. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.ttf +0 -0
  285. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.woff +0 -0
  286. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/anchor.gif +0 -0
  287. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/loader.gif +0 -0
  288. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/object.gif +0 -0
  289. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/trans.gif +0 -0
  290. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.ie7.min.css +1 -0
  291. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.json +79 -0
  292. data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.min.css +1 -0
  293. data/vendor/assets/mosaico-0.16.0/mosaico/server-config.js +12 -0
  294. data/vendor/assets/mosaico-0.16.0/mosaico/spec/converter-spec.js +115 -0
  295. data/vendor/assets/mosaico-0.16.0/mosaico/spec/data/template-versafix-1.model.json +137 -0
  296. data/vendor/assets/mosaico-0.16.0/mosaico/spec/declarations-spec.js +282 -0
  297. data/vendor/assets/mosaico-0.16.0/mosaico/spec/mensch-spec.js +114 -0
  298. data/vendor/assets/mosaico-0.16.0/mosaico/spec/model-spec.js +88 -0
  299. data/vendor/assets/mosaico-0.16.0/mosaico/spec/stylesheet-spec.js +177 -0
  300. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/app_standalone.less +7 -0
  301. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/app_standalone_material.less +350 -0
  302. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css +17 -0
  303. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements.less +497 -0
  304. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_jquery.less +344 -0
  305. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_mixins.less +406 -0
  306. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_moxie.less +130 -0
  307. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico.less +529 -0
  308. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico_content.less +391 -0
  309. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico_tools.less +1043 -0
  310. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_reset.less +45 -0
  311. data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_variables.less +156 -0
  312. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/app.js +167 -0
  313. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/bind-iframe.js +64 -0
  314. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/blocks.js +118 -0
  315. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/choose-template.js +7 -0
  316. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/colorpicker.js +58 -0
  317. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/csstext.js +16 -0
  318. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/droppable.js +87 -0
  319. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/eventable.js +33 -0
  320. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/extender-pagination.js +60 -0
  321. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/extsortables.js +103 -0
  322. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/fileupload.js +373 -0
  323. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/if-subs.js +110 -0
  324. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/jqueryui-spinner.js +31 -0
  325. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/jqueryui-tabs.js +17 -0
  326. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/script-template.js +30 -0
  327. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/scrollfix.js +48 -0
  328. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/scrollintoview.js +83 -0
  329. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/string-template.js +76 -0
  330. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/tooltips.js +36 -0
  331. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/validated-value.js +40 -0
  332. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/virtuals.js +102 -0
  333. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/wysiwygs.js +304 -0
  334. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/checkmodel.js +114 -0
  335. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/declarations.js +279 -0
  336. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/domutils.js +93 -0
  337. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/editor.js +411 -0
  338. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/main.js +42 -0
  339. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/model.js +536 -0
  340. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/parser.js +485 -0
  341. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/stylesheet.js +205 -0
  342. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/utils.js +156 -0
  343. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/wrapper.js +308 -0
  344. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/color.js +53 -0
  345. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/inliner.js +35 -0
  346. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/localstorage.js +100 -0
  347. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ko-bindings.js +22 -0
  348. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/template-loader.js +446 -0
  349. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/timed-call.js +31 -0
  350. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/undomanager/undomain.js +49 -0
  351. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/undomanager/undoserializer.js +120 -0
  352. data/vendor/assets/mosaico-0.16.0/mosaico/src/js/viewmodel.js +595 -0
  353. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/array.tmpl.html +1 -0
  354. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/block-show.tmpl.html +1 -0
  355. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/block-wysiwyg.tmpl.html +18 -0
  356. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/blocks-show.tmpl.html +1 -0
  357. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/blocks-wysiwyg.tmpl.html +2 -0
  358. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/customstyle.tmpl.html +3 -0
  359. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/empty.tmpl.html +0 -0
  360. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/error.tmpl.html +1 -0
  361. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/gallery-images.tmpl.html +16 -0
  362. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/img-wysiwyg.tmpl.html +43 -0
  363. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/main.tmpl.html +102 -0
  364. data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/toolbox.tmpl.html +111 -0
  365. data/vendor/assets/mosaico-0.16.0/mosaico/tasks/combineKOTemplates.js +24 -0
  366. data/vendor/assets/mosaico-0.16.0/mosaico/tasks/lib/phantom-thumbnailer-editor.js +168 -0
  367. data/vendor/assets/mosaico-0.16.0/mosaico/tasks/makeThumbs.js +79 -0
  368. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/README.md +1 -0
  369. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/_full.png +0 -0
  370. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/footerBlock.png +0 -0
  371. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/headerBlock.png +0 -0
  372. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/heroBlock.png +0 -0
  373. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/socialBlock.png +0 -0
  374. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/threetwoBlock.png +0 -0
  375. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/twoColumnBlock.png +0 -0
  376. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/template-tedc15.html +567 -0
  377. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/HeaderAndText.png +0 -0
  378. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/_full.png +0 -0
  379. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/fixedlist.png +0 -0
  380. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/mosaico-tutorial.md +335 -0
  381. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/mosaico-tutorial.pdf +0 -0
  382. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_384.jpg +0 -0
  383. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_385.jpg +0 -0
  384. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_386.jpg +0 -0
  385. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_387.jpg +0 -0
  386. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_407.jpg +0 -0
  387. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_408.jpg +0 -0
  388. data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/template-tutorial.html +68 -0
  389. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/_full.png +0 -0
  390. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/buttonBlock.png +0 -0
  391. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/doubleArticleBlock.png +0 -0
  392. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/doubleImageBlock.png +0 -0
  393. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/hrBlock.png +0 -0
  394. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/imageBlock.png +0 -0
  395. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/logoBlock.png +0 -0
  396. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/sideArticleBlock.png +0 -0
  397. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/singleArticleBlock.png +0 -0
  398. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/socialBlock.png +0 -0
  399. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/spacerBlock.png +0 -0
  400. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/textBlock.png +0 -0
  401. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/titleBlock.png +0 -0
  402. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/tripleArticleBlock.png +0 -0
  403. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/tripleImageBlock.png +0 -0
  404. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/facebook_bw_ok.png +0 -0
  405. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/facebook_ok.png +0 -0
  406. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/flickr_bw_ok.png +0 -0
  407. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/flickr_ok.png +0 -0
  408. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/google+_bw_ok.png +0 -0
  409. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/google+_ok.png +0 -0
  410. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/instagram_bw_ok.png +0 -0
  411. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/instagram_ok.png +0 -0
  412. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/linkedin_bw_ok.png +0 -0
  413. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/linkedin_ok.png +0 -0
  414. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/twitter_bw_ok.png +0 -0
  415. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/twitter_ok.png +0 -0
  416. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/vimeo_bw_ok.png +0 -0
  417. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/vimeo_ok.png +0 -0
  418. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/web_bw_ok.png +0 -0
  419. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/web_ok.png +0 -0
  420. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/youtube_bw_ok.png +0 -0
  421. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/youtube_ok.png +0 -0
  422. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/sponsor.gif +0 -0
  423. data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/template-versafix-1.html +1531 -0
  424. data/vendor/assets/mosaico-0.16.0/mosaico/uploads/README.md +1 -0
  425. metadata +536 -0
@@ -0,0 +1,1531 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5
+ <meta name="viewport" content="initial-scale=1.0" />
6
+ <meta name="format-detection" content="telephone=no" />
7
+ <title style="-ko-bind-text: @titleText">TITLE</title>
8
+ <style type="text/css">
9
+ @supports -ko-blockdefs {
10
+ id { widget: id }
11
+ size { label: Size; widget: select; options: 8|9|10|11|12|13|14|15|16|18|20|22|25|28|31; }
12
+ visible { label: Visible?; widget: boolean }
13
+ color { label: Color; widget: color }
14
+ radius {
15
+ label: Corner Radius;
16
+ widget: integer;
17
+ max: 20;
18
+ help: Attention - this property is not supported on all email clients (i.e. Outlook)
19
+ }
20
+ face { label: Font; widget: select; options: Arial, Helvetica, sans-serif=Arial|Arial Black, Arial Black, Gadget, sans-serif=Arial Black|Comic Sans MS, Comic Sans MS5, cursive=Comic Sans|Courier New, Courier New, monospace=Courier|Georgia, serif=Georgia|Impact, sans-serif=Impact|Lucida Console, Monaco, monospace=Lucida Console|Lucida Sans Unicode, Lucida Grande, sans-serif=Lucida Sans Unicode|Times New Roman, Times, serif=Times New Roman|Verdana, Geneva, sans-serif=Verdana}
21
+ decoration { label: Decoration; widget: select; options: none=None|underline=Underline }
22
+ linksColor { label: Link Color; extend: color }
23
+ linksDecoration { label: Underlined Links?; extend: decoration }
24
+ buttonColor { label: Button Color; extend: color }
25
+ text { label: Paragraph; widget: text }
26
+ url { label: Link; widget: url }
27
+ src { label: Image; widget: src }
28
+ hrWidth { label: Width; widget: select; options:10|20|30|40|50|60|70|80|90|100; }
29
+ hrHeight { label: Line height; widget: integer; max: 80; }
30
+
31
+ height { label: Height; widget: integer }
32
+ imageHeight { label: Image Height; extend: height; }
33
+ spacerSize { label: Height; widget: integer; max: 90; min: 4; }
34
+ align { label: Alignment; widget: select; options:left=Left|right=Right|center=Center}
35
+ alt {
36
+ label: Alternative Text;
37
+ widget: text;
38
+ help: Alternative text will be shown on email clients that does not download image automatically;
39
+ }
40
+ sponsor { label: Sponsor; properties: visible=true src url alt; category: hidden }
41
+ titleText {label:Title Text;category: hidden;}
42
+ gutterVisible { label: Show Gutter; extend: visible }
43
+ socialIconType { label: Icon Version;widget: select; options:bw=Black and White|colors=Colors; }
44
+
45
+ preheaderLinkOption {
46
+ label: Unsubscribe Link;
47
+ widget: select;
48
+ options: [profile_link]=Profile|[unsubscribe_link]=Unsubscribe|none=None;
49
+ help: If -None- is selected, preHeader text will be shown;
50
+ }
51
+
52
+ hrStyle { label: Separator Style;properties:color hrWidth hrHeight; }
53
+ hrStyle:preview { height: 200%; width: 200%; bottom: 20px; -ko-border-bottom: @[hrHeight]px solid @color; }
54
+ preheaderVisible { label: Show Preheader; extend: visible; help: Preheader block is the first one on the top of the page. It contains web version link and optionally unsubscribe link or a preheader text that will be shown as a preview on some email clients; }
55
+
56
+ /* content types */
57
+ blocks { label: Blocks; properties: blocks[]; }
58
+ link { label: Link; properties: text url }
59
+ image { label: Image; properties: src url alt }
60
+ backgroundColor { label: Background Color; extend: color }
61
+ buttonLink { label: Button; extend: link }
62
+
63
+ /* texts and links */
64
+ textStyle { label: Text; properties: face color size }
65
+ textStyle:preview { -ko-bind-text: @['AaZz']; -ko-font-family: @face; -ko-color: @color; -ko-font-size: @[size]px; }
66
+ linkStyle { label: Link; properties: face color size decoration=none }
67
+ linkStyle:preview { -ko-bind-text: @['Link']; -ko-font-size: @[size]px; -ko-font-family: @face; -ko-color: @color; -ko-text-decoration: @[decoration] }
68
+ longTextStyle { label: Paragraph; properties: face color size linksColor }
69
+ longTextStyle:preview { -ko-bind-text: @['AaZz']; -ko-font-family: @face; -ko-color: @color; -ko-font-size: @[size]px; }
70
+ bigButtonStyle { label: Big Button; extend: buttonStyle }
71
+ titleTextStyle { label: Title; extend: textStyle }
72
+ /* background */
73
+ externalBackgroundColor { label: External Background; extend: color }
74
+
75
+ externalTextStyle { label: Alternative Text; extend: textStyle }
76
+ externalTextStyle:preview { -ko-bind-text: @['AaZz']; -ko-font-family: @face; -ko-color: @color; -ko-font-size: @[size]px; }
77
+
78
+ bigTitleStyle { label: Title; properties: face color size align}
79
+ bigTitleStyle:preview { -ko-bind-text: @['AaZz']; -ko-font-family: @face; -ko-color: @color; -ko-font-size: @[size]px; }
80
+ /* buttons */
81
+ buttonStyle color { label: Text Color; extend: color }
82
+ buttonStyle size { label: Text Size; extend: size }
83
+ buttonStyle { label: Button; properties: face color size buttonColor radius }
84
+ buttonStyle:preview { -ko-bind-text: @['Button']; -ko-font-family: @face; -ko-color: @color; -ko-font-size: @[size]px; -ko-background-color: @buttonColor; padding-left: 5px; -ko-border-radius: @[radius]px; }
85
+
86
+ /* contents */
87
+ preheaderText {label: PreHeader Text; extend:text; help: This text will be shown on some email clients as a preview of the email contents;}
88
+ leftImage { label: Left Image; extend: image }
89
+ leftLongText { label: Left Text; extend: text }
90
+ leftButtonLink { label: Left Button; extend: buttonLink }
91
+ middleImage { label: Central Image; extend: image }
92
+ middleLongText { label: Central Text; extend: text }
93
+ middleButtonLink { label: Central Button; extend: buttonLink }
94
+ rightImage { label: Right Image; extend: image }
95
+ rightLongText { label: Right Text; extend: text }
96
+ rightButtonLink { label: Right Button; extend: buttonLink }
97
+ webversionText{ label: Web Link Text; extend: text;}
98
+ unsubscribeText{ label: Unsubscribe Link; extend: text;}
99
+
100
+ titleVisible { label: Show Title; extend: visible; }
101
+ buttonVisible { label: Show Button; extend: visible; }
102
+ imageVisible { label: Show Image; extend: visible; }
103
+
104
+ contentTheme { label: Main Style; }
105
+ contentTheme:preview { -ko-background-color: @[backgroundColor] }
106
+ frameTheme { label: Frame Style; }
107
+ frameTheme:preview { -ko-background-color: @[backgroundColor] }
108
+ template preheaderText { label: Preheader; }
109
+
110
+ template { label: Page; theme: frameTheme ;properties: preheaderVisible=true; version: 1.0.6; }
111
+
112
+ footerBlock { label: Unsubscribe Block; theme: frameTheme }
113
+
114
+ socialBlock fbVisible { label: Facebook; }
115
+ socialBlock twVisible { label: Twitter }
116
+ socialBlock ggVisible { label: Google+ }
117
+ socialBlock inVisible { label: LinkedIn }
118
+ socialBlock flVisible { label: Flickr }
119
+ socialBlock viVisible { label: Vimeo }
120
+ socialBlock webVisible { label: Website }
121
+ socialBlock instVisible { label: Instagram }
122
+ socialBlock youVisible { label: YouTube }
123
+ socialBlock fbUrl { label: Facebook Link}
124
+ socialBlock twUrl { label: Twitter Link}
125
+ socialBlock ggUrl { label: Google+ Link}
126
+ socialBlock inUrl { label: LinkedIn Link}
127
+ socialBlock flUrl { label: Flickr Link}
128
+ socialBlock viUrl { label: Vimeo Link}
129
+ socialBlock webUrl { label: Website Link}
130
+ socialBlock instUrl { label: Instagram Link}
131
+ socialBlock youUrl { label: YouTube Link}
132
+ socialBlock {
133
+ label: Social Block;
134
+ properties: socialIconType=colors fbVisible=true fbUrl twVisible=true twUrl ggVisible=true ggUrl webVisible=false webUrl inVisible=false inUrl flVisible=false flUrl viVisible=false viUrl instVisible=false instUrl youVisible=false youUrl longTextStyle longText backgroundColor;
135
+ variant:socialIconType;
136
+ theme: frameTheme
137
+ }
138
+
139
+ preheaderBlock { label:Preheader Block; theme: frameTheme}
140
+
141
+ sideArticleBlock imagePos {label:Image position;widget:select; options: left=Left|right=Right; }
142
+ sideArticleBlock imageWidth { label: Image Size; widget: select; options: 120=Small|166=Medium|258=Big; }
143
+ sideArticleBlock { label: Image+Text Block; properties: backgroundColor titleVisible=true buttonVisible=true imageWidth=166 imagePos=left titleTextStyle longTextStyle buttonStyle image longText buttonLink; variant:imagePos; theme: contentTheme }
144
+
145
+ textBlock { label: Text Block; properties: backgroundColor longTextStyle longText; theme: contentTheme}
146
+
147
+ singleArticleBlock { label: Image/Text Block; properties: backgroundColor titleVisible=true buttonVisible=true imageVisible=true titleTextStyle longTextStyle buttonStyle image longText buttonLink;theme: contentTheme}
148
+
149
+ doubleArticleBlock { label: 2 Columns Block; properties: backgroundColor titleVisible=true buttonVisible=true imageVisible=true titleTextStyle longTextStyle buttonStyle leftImage leftLongText leftButtonLink rightImage rightLongText rightButtonLink; theme: contentTheme}
150
+
151
+ tripleArticleBlock { label: 3 Columns Block; properties: backgroundColor titleVisible=true buttonVisible=true imageVisible=true titleTextStyle longTextStyle buttonStyle leftImage leftLongText leftButtonLink middleImage middleLongText middleButtonLink rightImage rightLongText rightButtonLink; theme: contentTheme}
152
+
153
+ logoBlock imageWidth { label: Image Size; widget: select; options: 166=Small|258=Medium|350=Big; variant:imageWidth;}
154
+ logoBlock { label: Logo Block; properties: image imageWidth=258; variant: imageWidth; theme: contentTheme}
155
+
156
+ titleBlock { label: Title; theme: contentTheme}
157
+
158
+ imageBlock longTextStyle {
159
+ label: Alternative Text;
160
+ }
161
+ imageBlock { label: Image; properties: gutterVisible=false; variant: gutterVisible; theme: contentTheme }
162
+
163
+ doubleImageBlock longTextStyle {
164
+ label: Alternative Text;
165
+ }
166
+ doubleImageBlock { label: Two Image Gallery Block; properties: gutterVisible=false; variant: gutterVisible; theme: contentTheme }
167
+
168
+ tripleImageBlock longTextStyle {
169
+ label: Alternative Text;
170
+ }
171
+ tripleImageBlock { label: Three Image Gallery Block;properties:gutterVisible=false;variant:gutterVisible; theme: contentTheme}
172
+
173
+ buttonBlock { label: Button Block; theme: contentTheme}
174
+ hrBlock { label: Separator Block; theme: contentTheme}
175
+ spacerBlock { label: Spacer Block; theme: contentTheme}
176
+
177
+ spacerBlock:preview,
178
+ logoBlock:preview { -ko-background-color: @[externalBackgroundColor] }
179
+
180
+ preheaderBlock:preview,
181
+ hrBlock:preview,
182
+ sideArticleBlock:preview,
183
+ textBlock:preview,
184
+ singleArticleBlock:preview,
185
+ doubleArticleBlock:preview,
186
+ tripleArticleBlock:preview,
187
+ titleBlock:preview,
188
+ footerBlock:preview,
189
+ socialBlock:preview,
190
+ buttonBlock:preview,
191
+ titleBlock:preview,
192
+ socialshareBlock:preview { -ko-background-color: @[backgroundColor] }
193
+ }
194
+ </style>
195
+ <style type="text/css" data-inline="true">
196
+ body { Margin: 0; padding: 0; }
197
+ img { border: 0px; display: block; }
198
+
199
+ .socialLinks { font-size: 6px; }
200
+ .socialLinks a {
201
+ display: inline-block;
202
+ }
203
+ .socialIcon {
204
+ display: inline-block;
205
+ vertical-align: top;
206
+ padding-bottom: 0px;
207
+ border-radius: 100%;
208
+ }
209
+ .oldwebkit { max-width: 570px; }
210
+ td.vb-outer { padding-left: 9px; padding-right: 9px; }
211
+ table.vb-container, table.vb-row, table.vb-content {
212
+ border-collapse: separate;
213
+ }
214
+ table.vb-row {
215
+ border-spacing: 9px;
216
+ }
217
+ table.vb-row.halfpad {
218
+ border-spacing: 0;
219
+ padding-left: 9px;
220
+ padding-right: 9px;
221
+ }
222
+ table.vb-row.fullwidth {
223
+ border-spacing: 0;
224
+ padding: 0;
225
+ }
226
+ table.vb-container {
227
+ padding-left: 18px;
228
+ padding-right: 18px;
229
+ }
230
+ table.vb-container.fullpad {
231
+ border-spacing: 18px;
232
+ padding-left: 0;
233
+ padding-right: 0;
234
+ }
235
+ table.vb-container.halfpad {
236
+ border-spacing: 9px;
237
+ padding-left: 9px;
238
+ padding-right: 9px;
239
+ }
240
+ table.vb-container.fullwidth {
241
+ padding-left: 0;
242
+ padding-right: 0;
243
+ }
244
+ </style>
245
+ <style type="text/css">
246
+ /* yahoo, hotmail */
247
+ .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div { line-height: 100%; }
248
+ .yshortcuts a { border-bottom: none !important; }
249
+ .vb-outer { min-width: 0 !important; }
250
+ .RMsgBdy, .ExternalClass {
251
+ width: 100%;
252
+ background-color: #3f3f3f;
253
+ -ko-background-color: @[_theme_.frameTheme.backgroundColor]
254
+ }
255
+
256
+ /* outlook */
257
+ table { mso-table-rspace: 0pt; mso-table-lspace: 0pt; }
258
+ #outlook a { padding: 0; }
259
+ img { outline: none; text-decoration: none; border: none; -ms-interpolation-mode: bicubic; }
260
+ a img { border: none; }
261
+
262
+ @media screen and (max-device-width: 600px), screen and (max-width: 600px) {
263
+ table.vb-container, table.vb-row {
264
+ width: 95% !important;
265
+ }
266
+
267
+ .mobile-hide { display: none !important; }
268
+ .mobile-textcenter { text-align: center !important; }
269
+
270
+ .mobile-full {
271
+ float: none !important;
272
+ width: 100% !important;
273
+ max-width: none !important;
274
+ padding-right: 0 !important;
275
+ padding-left: 0 !important;
276
+ }
277
+ img.mobile-full {
278
+ width: 100% !important;
279
+ max-width: none !important;
280
+ height: auto !important;
281
+ }
282
+ }
283
+ </style>
284
+ <style type="text/css" data-inline="true">
285
+ [data-ko-block=tripleArticleBlock] .links-color a,
286
+ [data-ko-block=tripleArticleBlock] .links-color a:link,
287
+ [data-ko-block=tripleArticleBlock] .links-color a:visited,
288
+ [data-ko-block=tripleArticleBlock] .links-color a:hover {
289
+ color: #3f3f3f;
290
+ -ko-color: @longTextStyle.linksColor;
291
+ text-decoration: underline;
292
+ }
293
+ [data-ko-block=tripleArticleBlock] .long-text p { Margin: 1em 0px; }
294
+ [data-ko-block=tripleArticleBlock] .long-text p:last-child { Margin-bottom: 0px; }
295
+ [data-ko-block=tripleArticleBlock] .long-text p:first-child { Margin-top: 0px; }
296
+
297
+ [data-ko-block=doubleArticleBlock] .links-color a,
298
+ [data-ko-block=doubleArticleBlock] .links-color a:link,
299
+ [data-ko-block=doubleArticleBlock] .links-color a:visited,
300
+ [data-ko-block=doubleArticleBlock] .links-color a:hover {
301
+ color: #3f3f3f;
302
+ -ko-color: @longTextStyle.linksColor;
303
+ text-decoration: underline;
304
+ }
305
+ [data-ko-block=doubleArticleBlock] .long-text p { Margin: 1em 0px; }
306
+ [data-ko-block=doubleArticleBlock] .long-text p:last-child { Margin-bottom: 0px; }
307
+ [data-ko-block=doubleArticleBlock] .long-text p:first-child { Margin-top: 0px; }
308
+
309
+ [data-ko-block=singleArticleBlock] .links-color a,
310
+ [data-ko-block=singleArticleBlock] .links-color a:link,
311
+ [data-ko-block=singleArticleBlock] .links-color a:visited,
312
+ [data-ko-block=singleArticleBlock] .links-color a:hover {
313
+ color: #3f3f3f;
314
+ -ko-color: @longTextStyle.linksColor;
315
+ text-decoration: underline;
316
+ }
317
+ [data-ko-block=singleArticleBlock] .long-text p { Margin: 1em 0px; }
318
+ [data-ko-block=singleArticleBlock] .long-text p:last-child { Margin-bottom: 0px; }
319
+ [data-ko-block=singleArticleBlock] .long-text p:first-child { Margin-top: 0px; }
320
+
321
+ [data-ko-block=textBlock] .links-color a,
322
+ [data-ko-block=textBlock] .links-color a:link,
323
+ [data-ko-block=textBlock] .links-color a:visited,
324
+ [data-ko-block=textBlock] .links-color a:hover {
325
+ color: #3f3f3f;
326
+ -ko-color: @longTextStyle.linksColor;
327
+ text-decoration: underline;
328
+ }
329
+ [data-ko-block=textBlock] .long-text p { Margin: 1em 0px; }
330
+ [data-ko-block=textBlock] .long-text p:last-child { Margin-bottom: 0px; }
331
+ [data-ko-block=textBlock] .long-text p:first-child { Margin-top: 0px; }
332
+
333
+ [data-ko-block=sideArticleBlock] .links-color a,
334
+ [data-ko-block=sideArticleBlock] .links-color a:link,
335
+ [data-ko-block=sideArticleBlock] .links-color a:visited,
336
+ [data-ko-block=sideArticleBlock] .links-color a:hover {
337
+ color: #3f3f3f;
338
+ -ko-color: @longTextStyle.linksColor;
339
+ text-decoration: underline;
340
+ }
341
+ [data-ko-block=sideArticleBlock] .long-text p { Margin: 1em 0px; }
342
+ [data-ko-block=sideArticleBlock] .long-text p:last-child { Margin-bottom: 0px; }
343
+ [data-ko-block=sideArticleBlock] .long-text p:first-child { Margin-top: 0px; }
344
+
345
+ [data-ko-block=socialBlock] .links-color a,
346
+ [data-ko-block=socialBlock] .links-color a:link,
347
+ [data-ko-block=socialBlock] .links-color a:visited,
348
+ [data-ko-block=socialBlock] .links-color a:hover {
349
+ color: #cccccc;
350
+ -ko-color: @longTextStyle.linksColor;
351
+ text-decoration: underline;
352
+ }
353
+ [data-ko-block=socialBlock] .long-text p { Margin: 1em 0px; }
354
+ [data-ko-block=socialBlock] .long-text p:last-child { Margin-bottom: 0px; }
355
+ [data-ko-block=socialBlock] .long-text p:first-child { Margin-top: 0px; }
356
+
357
+ [data-ko-block=footerBlock] .links-color a,
358
+ [data-ko-block=footerBlock] .links-color a:link,
359
+ [data-ko-block=footerBlock] .links-color a:visited,
360
+ [data-ko-block=footerBlock] .links-color a:hover {
361
+ color: #cccccc;
362
+ -ko-color: @longTextStyle.linksColor;
363
+ text-decoration: underline;
364
+ }
365
+ [data-ko-block=footerBlock] .long-text p { Margin: 1em 0px; }
366
+ [data-ko-block=footerBlock] .long-text p:last-child { Margin-bottom: 0px; }
367
+ [data-ko-block=footerBlock] .long-text p:first-child { Margin-top: 0px; }
368
+
369
+ [data-ko-block=doubleImageBlock] a,
370
+ [data-ko-block=doubleImageBlock] a:link,
371
+ [data-ko-block=doubleImageBlock] a:visited,
372
+ [data-ko-block=doubleImageBlock] a:hover {
373
+ color: #3f3f3f;
374
+ -ko-color: @longTextStyle.linksColor;
375
+ text-decoration: underline;
376
+ }
377
+ [data-ko-block=tripleImageBlock] a,
378
+ [data-ko-block=tripleImageBlock] a:link,
379
+ [data-ko-block=tripleImageBlock] a:visited,
380
+ [data-ko-block=tripleImageBlock] a:hover {
381
+ color: #3f3f3f;
382
+ -ko-color: @longTextStyle.linksColor;
383
+ text-decoration: underline;
384
+ }
385
+ [data-ko-block=imageBlock] a,
386
+ [data-ko-block=imageBlock] a:link,
387
+ [data-ko-block=imageBlock] a:visited,
388
+ [data-ko-block=imageBlock] a:hover {
389
+ color: #3f3f3f;
390
+ -ko-color: @longTextStyle.linksColor;
391
+ text-decoration: underline;
392
+ }
393
+ </style>
394
+ </head>
395
+ <body bgcolor="#3f3f3f" text="#919191" alink="#cccccc" vlink="#cccccc" style="background-color: #3f3f3f; color: #919191;
396
+ -ko-background-color: @_theme_.frameTheme.backgroundColor; -ko-attr-bgcolor: @_theme_.frameTheme.backgroundColor; -ko-color: @_theme_.frameTheme.longTextStyle.color;
397
+ -ko-attr-text: @_theme_.frameTheme.longTextStyle.color; -ko-attr-alink: @_theme_.frameTheme.longTextStyle.linksColor;
398
+ -ko-attr-vlink: @_theme_.frameTheme.longTextStyle.linksColor">
399
+
400
+ <center>
401
+
402
+ <!-- preheaderBlock -->
403
+ <div data-ko-display="preheaderVisible" data-ko-wrap="false">
404
+
405
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#3f3f3f"
406
+ style="background-color: #3f3f3f; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor" data-ko-block="preheaderBlock">
407
+ <tr>
408
+ <td class="vb-outer" align="center" valign="top" bgcolor="#3f3f3f"
409
+ style="background-color: #3f3f3f; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor">
410
+ <div style="display: none; font-size:1px; color: #333333; line-height: 1px; max-height:0px; max-width: 0px; opacity: 0; overflow: hidden;
411
+ -ko-bind-text: @preheaderText"></div>
412
+
413
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
414
+ <div class="oldwebkit">
415
+ <table width="570" border="0" cellpadding="0" cellspacing="0" class="vb-row halfpad" bgcolor="#3f3f3f"
416
+ style="width: 100%; max-width: 570px; background-color: #3f3f3f; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
417
+ <tr>
418
+ <td align="center" valign="top" bgcolor="#3f3f3f" style="font-size: 0; background-color: #3f3f3f;
419
+ -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor" align="left">
420
+
421
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="552"><tr><![endif]-->
422
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="276"><![endif]-->
423
+ <div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full">
424
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="276" style="width: 100%;" align="left">
425
+ <tr>
426
+ <td width="100%" valign="top" align="left" style="font-weight: normal; text-align:left; font-size: 13px;
427
+ font-family: Arial, Helvetica, sans-serif; color: #ffffff;
428
+ -ko-font-size: @[linkStyle.size]px; -ko-color: @linkStyle.color; -ko-font-family: @linkStyle.face">
429
+ <a data-ko-display="preheaderLinkOption neq 'none'" data-ko-editable="unsubscribeText" href="[unsubscribe_link]"
430
+ style="text-decoration: underline; color: #ffffff; -ko-attr-href: @preheaderLinkOption;
431
+ -ko-color: @linkStyle.color; -ko-text-decoration: @linkStyle.decoration">Unsubscribe</a>
432
+ <span data-ko-display="preheaderLinkOption eq 'none'" style="font-size: 13px;color: #919191; font-weight: normal; text-align:center;
433
+ font-family: Arial, Helvetica, sans-serif; -ko-font-size: @[longTextStyle.size]px; -ko-color: @longTextStyle.color;
434
+ -ko-font-family: @longTextStyle.face; -ko-bind-text: @preheaderText; display: none"></span>
435
+ </td>
436
+ </tr>
437
+ </table>
438
+ </div><!--[if (gte mso 9)|(lte ie 8)]>
439
+ </td><td align="left" valign="top" width="276">
440
+ <![endif]--><div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full mobile-hide">
441
+
442
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="276" style="width: 100%; text-align: right;" align="left">
443
+ <tr>
444
+ <td width="100%" valign="top" style="font-weight: normal; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #ffffff;
445
+ -ko-font-size: @[linkStyle.size]px; -ko-color: @linkStyle.color; -ko-font-family: @linkStyle.face">
446
+ <span style="color: #ffffff; text-decoration: underline;
447
+ -ko-color: @linkStyle.color; -ko-text-decoration: @linkStyle.decoration">
448
+ <a data-ko-editable="webversionText" href="[show_link]"
449
+ style="text-decoration: underline; color: #ffffff;
450
+ -ko-color: @linkStyle.color; -ko-text-decoration: @linkStyle.decoration">View in your browser</a>
451
+ </span>
452
+ </td>
453
+ </tr>
454
+ </table>
455
+
456
+ </div><!--[if (gte mso 9)|(lte ie 8)]>
457
+ </td></tr></table><![endif]-->
458
+
459
+ </td>
460
+ </tr>
461
+ </table>
462
+ </div>
463
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
464
+ </td>
465
+ </tr>
466
+ </table>
467
+
468
+ </div>
469
+ <!-- /preheaderBlock -->
470
+
471
+ <div data-ko-container="main" data-ko-wrap="false">
472
+
473
+ <!-- logoBlock -->
474
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
475
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="logoBlock">
476
+ <tr>
477
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
478
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
479
+
480
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
481
+ <div class="oldwebkit">
482
+ <table width="570" style="width: 100%; max-width: 570px" border="0" cellpadding="0" cellspacing="18" class="vb-container fullpad">
483
+ <tr>
484
+ <td valign="top" align="center">
485
+
486
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="258" style="-ko-attr-width: @[imageWidth]"><tr><td align="center" valign="top"><![endif]-->
487
+ <div style="display:inline-block; max-width:258px; -ko-max-width: @[imageWidth]px; vertical-align:top; width:100%;" class="mobile-full">
488
+ <a data-ko-link="image.url" href="" style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #f3f3f3;
489
+ text-decoration: none; -ko-font-size: @[externalTextStyle.size]px;
490
+ -ko-font-family: @externalTextStyle.face; -ko-color: @externalTextStyle.color"><img
491
+ data-ko-editable="image.src" width="258" data-ko-placeholder-height="150"
492
+ style="-ko-attr-alt: @image.alt; width: 100%; max-width: 258px; -ko-attr-width: @imageWidth; -ko-max-width: @[imageWidth]px;"
493
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=258%2C150" vspace="0" hspace="0" border="0" alt="" /></a>
494
+ </div>
495
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
496
+
497
+ </td>
498
+ </tr>
499
+ </table>
500
+ </div>
501
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
502
+
503
+ </td>
504
+ </tr>
505
+ </table>
506
+ <!-- /logoBlock -->
507
+
508
+ <!-- sideArticleBlock -->
509
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
510
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="sideArticleBlock">
511
+ <tr>
512
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
513
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
514
+
515
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
516
+ <div class="oldwebkit">
517
+ <table width="570" border="0" cellpadding="0" cellspacing="9" class="vb-row fullpad" bgcolor="#ffffff"
518
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
519
+ <tr>
520
+ <td align="center" class="mobile-row" valign="top" style="font-size: 0;">
521
+
522
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="552"><tr><![endif]-->
523
+ <div data-ko-display="imagePos eq 'left'" data-ko-wrap="false" style="width: 100%; max-width:184px; -ko-max-width:@[18 + Math.round(imageWidth)]px; display:inline-block" class="mobile-full">
524
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="184" style="-ko-attr-width: @[18 + Math.round(imageWidth)]"><![endif]-->
525
+ <div style="display:inline-block; max-width:184px; -ko-max-width:@[18 + Math.round(imageWidth)]px; vertical-align:top; width:100%;" class="mobile-full">
526
+
527
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="184" style="width: 100%; -ko-attr-width: @[18 + Math.round(imageWidth)]" align="left">
528
+ <tr>
529
+ <td width="100%" valign="top" align="left" class="links-color">
530
+ <a data-ko-link="image.url" href="">
531
+ <img data-ko-editable="image.src" border="0" hspace="0" vspace="0" width="166"
532
+ data-ko-placeholder-height="130" class="mobile-full" alt=""
533
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C130"
534
+ style="vertical-align: top; width: 100%; height: auto; -ko-attr-width: @imageWidth; max-width: 166px; -ko-max-width: @[imageWidth]px; -ko-attr-alt: @image.alt" />
535
+ </a>
536
+ </td>
537
+ </tr>
538
+ </table>
539
+
540
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
541
+ <![endif]--></div><!--[if (gte mso 9)|(lte ie 8)]>
542
+ <td align="left" valign="top" width="368" style="-ko-attr-width: @[570 - 2 * 18 - Math.round(imageWidth)]">
543
+ <![endif]--><div style="display:inline-block; max-width:368px; -ko-max-width: @[570 - 2 * 18 - Math.round(imageWidth)]px; vertical-align:top; width:100%;" class="mobile-full">
544
+
545
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="368" style="width: 100%; -ko-attr-width: @[570 - 2 * 18 - Math.round(imageWidth)]" align="left">
546
+ <tr data-ko-display="titleVisible">
547
+ <td style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align:left;
548
+ -ko-font-size: @[titleTextStyle.size]px; -ko-font-family: @titleTextStyle.face; -ko-color: @titleTextStyle.color">
549
+ <span style="color: #3f3f3f; -ko-color: @titleTextStyle.color" data-ko-editable="titleText">
550
+ Title
551
+ </span>
552
+ </td>
553
+ </tr>
554
+ <tr>
555
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
556
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
557
+ data-ko-editable="longText" class="long-text links-color">
558
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
559
+ </td>
560
+ </tr>
561
+ <tr data-ko-display="buttonVisible">
562
+ <td valign="top">
563
+ <table cellpadding="0" border="0" align="left" cellspacing="0" class="mobile-full" style="padding-top: 4px">
564
+ <tr>
565
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="26"
566
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; text-align:center; color: #3f3f3f; font-weight: normal;
567
+ padding-left: 18px; padding-right: 18px; background-color: #bfbfbf; border-radius: 4px;
568
+ -ko-border-radius: @[buttonStyle.radius]px;
569
+ -ko-attr-bgcolor: @buttonStyle.buttonColor; -ko-background-color: @buttonStyle.buttonColor;
570
+ -ko-font-size: @[buttonStyle.size]px; -ko-font-family: @buttonStyle.face; -ko-color: @buttonStyle.color;">
571
+ <a data-ko-editable="buttonLink.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
572
+ -ko-color: @buttonStyle.color; -ko-attr-href: @buttonLink.url">BUTTON</a>
573
+ </td>
574
+ </tr>
575
+ </table>
576
+ </td>
577
+ </tr>
578
+ </table>
579
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
580
+ <![endif]--><div data-ko-display="imagePos eq 'right'" data-ko-wrap="false" style="width: 100%; max-width:184px; -ko-max-width:@[18 + Math.round(imageWidth)]px; display:inline-block; display: none;" class="mobile-full"><!--[if (gte mso 9)|(lte ie 8)]>
581
+ <td data-ko-display="imagePos eq 'right'" align="left" valign="top" width="184" style="display: none; -ko-attr-width: @[18 + Math.round(imageWidth)]">
582
+ <![endif]--><div style="display:inline-block; max-width:184px; -ko-max-width:@[18 + Math.round(imageWidth)]px; vertical-align:top; width:100%;" class="mobile-full">
583
+
584
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="184" style="width: 100%; -ko-attr-width: @[18 + Math.round(imageWidth)]" align="left">
585
+ <tr>
586
+ <td width="100%" valign="top" align="left" class="links-color">
587
+ <a data-ko-link="image.url" href="">
588
+ <img data-ko-editable="image.src" border="0" hspace="0" vspace="0" width="166" data-ko-placeholder-height="130" class="mobile-full"
589
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C130" class="mobile-full"
590
+ alt="" style="vertical-align:top; width: 100%; height: auto; -ko-attr-width: @imageWidth; max-width: 166px; -ko-max-width: @[imageWidth]px; -ko-attr-alt: @image.alt" />
591
+ </a>
592
+ </td>
593
+ </tr>
594
+ </table>
595
+
596
+ </div>
597
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
598
+ </div>
599
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
600
+
601
+ </td>
602
+ </tr>
603
+ </table>
604
+ </div>
605
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
606
+ </td>
607
+ </tr>
608
+ </table>
609
+ <!-- /sideArticleBlock -->
610
+
611
+ <!-- singleArticleBlock -->
612
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
613
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="singleArticleBlock">
614
+ <tr>
615
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
616
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
617
+
618
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
619
+ <div class="oldwebkit">
620
+ <table width="570" border="0" cellpadding="0" cellspacing="18" class="vb-container fullpad" bgcolor="#ffffff"
621
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
622
+ <tr data-ko-display="imageVisible">
623
+ <td width="100%" valign="top" align="left" class="links-color">
624
+ <a data-ko-link="image.url" href="">
625
+ <img data-ko-editable="image.src" border="0" hspace="0" vspace="0" width="534" data-ko-placeholder-height="200"
626
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=534%2C200" class="mobile-full"
627
+ alt="" style="vertical-align:top; max-width:534px; width: 100%; height: auto;
628
+ -ko-attr-alt: @image.alt" />
629
+ </a>
630
+ </td>
631
+ </tr>
632
+ <tr><td><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%">
633
+ <tr data-ko-display="titleVisible">
634
+ <td style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align:left;
635
+ -ko-font-size: @[titleTextStyle.size]px; -ko-font-family: @titleTextStyle.face; -ko-color: @titleTextStyle.color">
636
+ <span style="color: #3f3f3f; -ko-color: @titleTextStyle.color" data-ko-editable="text">
637
+ Section Title
638
+ </span>
639
+ </td>
640
+ </tr>
641
+ <tr data-ko-display="titleVisible">
642
+ <td height="9" style="font-size:1px; line-height: 1px;">&nbsp;</td>
643
+ </tr>
644
+ <tr>
645
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
646
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
647
+ data-ko-editable="longText" class="long-text links-color">
648
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
649
+ </td>
650
+ </tr>
651
+ <tr data-ko-display="buttonVisible">
652
+ <td height="13" style="font-size:1px; line-height: 1px;">&nbsp;</td>
653
+ </tr>
654
+ <tr data-ko-display="buttonVisible">
655
+ <td valign="top">
656
+ <table cellpadding="0" border="0" align="left" cellspacing="0" class="mobile-full">
657
+ <tr>
658
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="26"
659
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; text-align:center; color: #3f3f3f; font-weight: normal;
660
+ padding-left: 18px; padding-right: 18px; background-color: #bfbfbf; border-radius: 4px;
661
+ -ko-border-radius: @[buttonStyle.radius]px;
662
+ -ko-attr-bgcolor: @buttonStyle.buttonColor; -ko-background-color: @buttonStyle.buttonColor;
663
+ -ko-font-size: @[buttonStyle.size]px; -ko-font-family: @buttonStyle.face; -ko-color: @buttonStyle.color; ">
664
+ <a data-ko-editable="buttonLink.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
665
+ -ko-color: @buttonStyle.color; -ko-attr-href: @buttonLink.url">BUTTON</a>
666
+ </td>
667
+ </tr>
668
+ </table>
669
+ </td>
670
+ </tr>
671
+ </table></td></tr>
672
+ </table>
673
+ </div>
674
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
675
+ </td>
676
+ </tr>
677
+ </table>
678
+ <!-- /singleArticleBlock -->
679
+
680
+ <!-- TitleBlock -->
681
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
682
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="titleBlock">
683
+ <tr>
684
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
685
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
686
+
687
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
688
+ <div class="oldwebkit">
689
+ <table width="570" border="0" cellpadding="0" cellspacing="9" class="vb-container halfpad" bgcolor="#ffffff"
690
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
691
+ <tr>
692
+ <td bgcolor="#ffffff" align="center"
693
+ style="background-color: #ffffff; font-size: 22px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align: center;
694
+ -ko-attr-align: @bigTitleStyle.align; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;
695
+ -ko-font-size: @[bigTitleStyle.size]px; -ko-font-family: @bigTitleStyle.face; -ko-color: @bigTitleStyle.color; -ko-text-align: @bigTitleStyle.align">
696
+ <span data-ko-editable="text">Section Title</span>
697
+ </td>
698
+ </tr>
699
+ </table>
700
+ </div>
701
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
702
+ </td>
703
+ </tr>
704
+ </table>
705
+ <!-- /TitleBlock -->
706
+
707
+ <!-- textBlock -->
708
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
709
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="textBlock">
710
+ <tr>
711
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
712
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
713
+
714
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
715
+ <div class="oldwebkit">
716
+ <table width="570" border="0" cellpadding="0" cellspacing="18" class="vb-container fullpad" bgcolor="#ffffff"
717
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
718
+ <tr>
719
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
720
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
721
+ data-ko-editable="longText" class="long-text links-color">
722
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts.</p>
723
+ <p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
724
+ </td>
725
+ </tr>
726
+ </table>
727
+ </div>
728
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
729
+ </td>
730
+ </tr>
731
+ </table>
732
+ <!-- /textBlock -->
733
+
734
+ <!-- tripleArticleBlock -->
735
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
736
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="tripleArticleBlock">
737
+ <tr>
738
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
739
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
740
+
741
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
742
+ <div class="oldwebkit">
743
+ <table width="570" border="0" cellpadding="0" cellspacing="9" class="vb-row fullpad" bgcolor="#ffffff"
744
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
745
+ <tr>
746
+ <td align="center" valign="top" class="mobile-row" style="font-size: 0">
747
+
748
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="552"><tr><![endif]-->
749
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="184"><![endif]-->
750
+ <div style="display:inline-block; max-width:184px; vertical-align:top; width:100%;" class="mobile-full">
751
+
752
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="184" style="width: 100%" align="left">
753
+ <tr data-ko-display="imageVisible">
754
+ <td width="100%" valign="top" align="left" class="links-color" style="padding-bottom: 9px">
755
+ <a data-ko-link="leftImage.url" href="">
756
+ <img data-ko-editable="leftImage.src" border="0" hspace="0" vspace="0" width="166" height="90"
757
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C90" class="mobile-full"
758
+ alt="" style="vertical-align:top; width: 100%; height: auto; -ko-attr-height: @imageHeight;
759
+ -ko-attr-alt: @leftImage.alt" />
760
+ </a>
761
+ </td>
762
+ </tr>
763
+ <tr data-ko-display="titleVisible">
764
+ <td style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align:left;
765
+ -ko-font-size: @[titleTextStyle.size]px; -ko-font-family: @titleTextStyle.face; -ko-color: @titleTextStyle.color">
766
+ <span style="color: #3f3f3f; -ko-color: @titleTextStyle.color" data-ko-editable="leftTitleText">Title
767
+ </span>
768
+ </td>
769
+ </tr>
770
+ <tr>
771
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
772
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
773
+ data-ko-editable="leftLongText" class="long-text links-color">
774
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts. </p>
775
+ </td>
776
+ </tr>
777
+ <tr data-ko-display="buttonVisible">
778
+ <td valign="top">
779
+ <table cellpadding="0" border="0" align="left" cellspacing="0" class="mobile-full" style="padding-top: 4px">
780
+ <tr>
781
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="26"
782
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; text-align:center; color: #3f3f3f; font-weight: normal;
783
+ padding-left: 18px; padding-right: 18px; background-color: #bfbfbf; border-radius: 4px;
784
+ -ko-border-radius: @[buttonStyle.radius]px;
785
+ -ko-attr-bgcolor: @buttonStyle.buttonColor; -ko-background-color: @buttonStyle.buttonColor;
786
+ -ko-font-size: @[buttonStyle.size]px; -ko-font-family: @buttonStyle.face; -ko-color: @buttonStyle.color; ">
787
+ <a data-ko-editable="leftButtonLink.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
788
+ -ko-color: @buttonStyle.color; -ko-attr-href: @leftButtonLink.url">BUTTON</a>
789
+ </td>
790
+ </tr>
791
+ </table>
792
+ </td>
793
+ </tr>
794
+ </table>
795
+
796
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
797
+ <td align="left" valign="top" width="184">
798
+ <![endif]--><div style="display:inline-block; max-width:184px; vertical-align:top; width:100%;" class="mobile-full">
799
+
800
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="184" style="width: 100%" align="left">
801
+ <tr data-ko-display="imageVisible">
802
+ <td width="100%" valign="top" align="left" class="links-color" style="padding-bottom: 9px">
803
+ <a data-ko-link="middleImage.url">
804
+ <img data-ko-editable="middleImage.src" border="0" hspace="0" vspace="0" width="166" height="90"
805
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C90" class="mobile-full"
806
+ alt="" style="vertical-align:top; width: 100%; height: auto; -ko-attr-height: @imageHeight;
807
+ -ko-attr-alt: @middleImage.alt" />
808
+ </a>
809
+ </td>
810
+ </tr>
811
+ <tr data-ko-display="titleVisible">
812
+ <td style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align:left;
813
+ -ko-font-size: @[titleTextStyle.size]px; -ko-font-family: @titleTextStyle.face; -ko-color: @titleTextStyle.color">
814
+ <span style="color: #3f3f3f; -ko-color: @titleTextStyle.color" data-ko-editable="middleTitleText">
815
+ Title
816
+ </span>
817
+ </td>
818
+ </tr>
819
+ <tr>
820
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
821
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
822
+ data-ko-editable="middleLongText" class="long-text links-color">
823
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts. </p>
824
+ </td>
825
+ </tr>
826
+ <tr data-ko-display="buttonVisible">
827
+ <td valign="top">
828
+ <table cellpadding="0" border="0" align="left" cellspacing="0" class="mobile-full" style="padding-top: 4px">
829
+ <tr>
830
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="26"
831
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; text-align:center; color: #3f3f3f; font-weight: normal;
832
+ padding-left: 18px; padding-right: 18px; background-color: #bfbfbf; border-radius: 4px;
833
+ -ko-border-radius: @[buttonStyle.radius]px;
834
+ -ko-attr-bgcolor: @buttonStyle.buttonColor; -ko-background-color: @buttonStyle.buttonColor;
835
+ -ko-font-size: @[buttonStyle.size]px; -ko-font-family: @buttonStyle.face; -ko-color: @buttonStyle.color; ">
836
+ <a data-ko-editable="middleButtonLink.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
837
+ -ko-color: @buttonStyle.color; -ko-attr-href: @middleButtonLink.url">BUTTON</a>
838
+ </td>
839
+ </tr>
840
+ </table>
841
+ </td>
842
+ </tr>
843
+ </table>
844
+
845
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
846
+ <td align="left" valign="top" width="184">
847
+ <![endif]--><div style="display:inline-block; max-width:184px; vertical-align:top; width:100%;" class="mobile-full">
848
+
849
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="184" style="width: 100%" align="right">
850
+ <tr data-ko-display="imageVisible">
851
+ <td width="100%" valign="top" align="left" class="links-color" style="padding-bottom: 9px">
852
+ <a data-ko-link="rightImage.url">
853
+ <img data-ko-editable="rightImage.src" border="0" hspace="0" vspace="0" width="166" height="90"
854
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C90" class="mobile-full"
855
+ alt="" style="vertical-align:top; width: 100%; height: auto; -ko-attr-height: @imageHeight;
856
+ -ko-attr-alt: @rightImage.alt" />
857
+ </a>
858
+ </td>
859
+ </tr>
860
+ <tr data-ko-display="titleVisible">
861
+ <td style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align:left;
862
+ -ko-font-size: @[titleTextStyle.size]px; -ko-font-family: @titleTextStyle.face; -ko-color: @titleTextStyle.color">
863
+ <span style="color: #3f3f3f; -ko-color: @titleTextStyle.color" data-ko-editable="rightTitleText">
864
+ Title
865
+ </span>
866
+ </td>
867
+ </tr>
868
+ <tr>
869
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
870
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
871
+ data-ko-editable="rightLongText" class="long-text links-color">
872
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts. </p>
873
+ </td>
874
+ </tr>
875
+ <tr data-ko-display="buttonVisible">
876
+ <td valign="top">
877
+ <table cellpadding="0" border="0" align="left" cellspacing="0" class="mobile-full" style="padding-top: 4px">
878
+ <tr>
879
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="26"
880
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; text-align:center; color: #3f3f3f; font-weight: normal;
881
+ padding-left: 18px; padding-right: 18px; background-color: #bfbfbf; border-radius: 4px;
882
+ -ko-border-radius: @[buttonStyle.radius]px;
883
+ -ko-attr-bgcolor: @buttonStyle.buttonColor; -ko-background-color: @buttonStyle.buttonColor;
884
+ -ko-font-size: @[buttonStyle.size]px; -ko-font-family: @buttonStyle.face; -ko-color: @buttonStyle.color;">
885
+ <a data-ko-editable="rightButtonLink.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
886
+ -ko-color: @buttonStyle.color; -ko-attr-href: @rightButtonLink.url">BUTTON</a>
887
+ </td>
888
+ </tr>
889
+ </table>
890
+ </td>
891
+ </tr>
892
+ </table>
893
+
894
+ </div>
895
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
896
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
897
+
898
+ </td>
899
+ </tr>
900
+ </table>
901
+ </div>
902
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
903
+ </td>
904
+ </tr>
905
+ </table>
906
+ <!-- /tripleArticleBlock -->
907
+
908
+ <!-- doubleArticleBlock -->
909
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
910
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="doubleArticleBlock">
911
+ <tr>
912
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
913
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
914
+
915
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
916
+ <div class="oldwebkit">
917
+ <table width="570" border="0" cellpadding="0" cellspacing="9" class="vb-row fullpad" bgcolor="#ffffff"
918
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
919
+ <tr>
920
+ <td align="center" valign="top" style="font-size: 0">
921
+
922
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="552"><tr><![endif]-->
923
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="276"><![endif]-->
924
+ <div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full">
925
+
926
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="276" style="width: 100%" align="left">
927
+ <tr data-ko-display="imageVisible">
928
+ <td width="100%" align="left" class="links-color" style="padding-bottom: 9px">
929
+ <a data-ko-link="leftImage.url">
930
+ <img data-ko-editable="leftImage.src" border="0" hspace="0" vspace="0" width="258" height="100"
931
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=258%2C100" class="mobile-full"
932
+ alt="" style="vertical-align:top; width: 100%; height: auto; -ko-attr-height: @imageHeight;
933
+ -ko-attr-alt: @leftImage.alt" />
934
+ </a>
935
+ </td>
936
+ </tr>
937
+ <tr data-ko-display="titleVisible">
938
+ <td style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align:left;
939
+ -ko-font-size: @[titleTextStyle.size]px; -ko-font-family: @titleTextStyle.face; -ko-color: @titleTextStyle.color">
940
+ <span style="color: #3f3f3f; -ko-color: @titleTextStyle.color" data-ko-editable="leftTitleText">
941
+ Title
942
+ </span>
943
+ </td>
944
+ </tr>
945
+ <tr>
946
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
947
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
948
+ data-ko-editable="leftLongText" class="long-text links-color">
949
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts. </p>
950
+ </td>
951
+ </tr>
952
+ <tr data-ko-display="buttonVisible">
953
+ <td valign="top">
954
+ <table cellpadding="0" border="0" align="left" cellspacing="0" class="mobile-full" style="padding-top: 4px;">
955
+ <tr>
956
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="26"
957
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; text-align:center; color: #3f3f3f; font-weight: normal;
958
+ padding-left: 18px; padding-right: 18px; background-color: #bfbfbf; border-radius: 4px;
959
+ -ko-border-radius: @[buttonStyle.radius]px;
960
+ -ko-attr-bgcolor: @buttonStyle.buttonColor; -ko-background-color: @buttonStyle.buttonColor;
961
+ -ko-font-size: @[buttonStyle.size]px; -ko-font-family: @buttonStyle.face; -ko-color: @buttonStyle.color; ">
962
+ <a data-ko-editable="leftButtonLink.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
963
+ -ko-color: @buttonStyle.color; -ko-attr-href: @leftButtonLink.url">BUTTON</a>
964
+ </td>
965
+ </tr>
966
+ </table>
967
+ </td>
968
+ </tr>
969
+ </table>
970
+
971
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
972
+ <td align="left" valign="top" width="276">
973
+ <![endif]--><div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full">
974
+
975
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="276" style="width: 100%" align="right">
976
+ <tr data-ko-display="imageVisible">
977
+ <td width="100%" valign="top" align="left" class="links-color" style="padding-bottom: 9px">
978
+ <a data-ko-link="rightImage.url">
979
+ <img data-ko-editable="rightImage.src" border="0" hspace="0" vspace="0" width="258" height="100"
980
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=258%2C100" class="mobile-full"
981
+ alt="" style="vertical-align:top; width: 100%; height: auto; -ko-attr-height: @imageHeight;
982
+ -ko-attr-alt: @rightImage.alt" />
983
+ </a>
984
+ </td>
985
+ </tr>
986
+ <tr data-ko-display="titleVisible">
987
+ <td style="font-size: 18px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; text-align:left;
988
+ -ko-font-size: @[titleTextStyle.size]px; -ko-font-family: @titleTextStyle.face; -ko-color: @titleTextStyle.color">
989
+ <span style="color: #3f3f3f; -ko-color: @titleTextStyle.color" data-ko-editable="rightTitleText">
990
+ Title
991
+ </span>
992
+ </td>
993
+ </tr>
994
+ <tr>
995
+ <td align="left" style="text-align: left; font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f;
996
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
997
+ data-ko-editable="rightLongText" class="long-text links-color">
998
+ <p>Far far away, behind the word mountains, far from the countries <a href="">Vokalia and Consonantia</a>, there live the blind texts.</p>
999
+ </td>
1000
+ </tr>
1001
+ <tr data-ko-display="buttonVisible">
1002
+ <td valign="top">
1003
+ <table cellpadding="0" border="0" align="left" cellspacing="0" class="mobile-full" style="padding-top: 4px;">
1004
+ <tr>
1005
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="26"
1006
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; text-align:center; color: #3f3f3f; font-weight: normal;
1007
+ padding-left: 18px; padding-right: 18px; background-color: #bfbfbf; border-radius: 4px;
1008
+ -ko-border-radius: @[buttonStyle.radius]px;
1009
+ -ko-attr-bgcolor: @buttonStyle.buttonColor; -ko-background-color: @buttonStyle.buttonColor;
1010
+ -ko-font-size: @[buttonStyle.size]px; -ko-font-family: @buttonStyle.face; -ko-color: @buttonStyle.color; ">
1011
+ <a data-ko-editable="rightButtonLink.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
1012
+ -ko-color: @buttonStyle.color; -ko-attr-href: @rightButtonLink.url">BUTTON</a>
1013
+ </td>
1014
+ </tr>
1015
+ </table>
1016
+ </td>
1017
+ </tr>
1018
+ </table>
1019
+
1020
+ </div>
1021
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
1022
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
1023
+
1024
+ </td>
1025
+ </tr>
1026
+ </table>
1027
+ </div>
1028
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1029
+ </td>
1030
+ </tr>
1031
+ </table>
1032
+ <!-- /doubleArticleBlock -->
1033
+
1034
+ <!-- hrBlock -->
1035
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
1036
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="hrBlock">
1037
+ <tr>
1038
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
1039
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
1040
+
1041
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
1042
+ <div class="oldwebkit">
1043
+ <table width="570" border="0" cellpadding="0" cellspacing="9" class="vb-container halfpad" bgcolor="#ffffff"
1044
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
1045
+ <tr>
1046
+ <td valign="top" bgcolor="#ffffff" style="background-color: #ffffff;
1047
+ -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor" align="center">
1048
+ <table width="100%" cellspacing="0" cellpadding="0" border="0"
1049
+ style="width:100%; -ko-width: @[hrStyle.hrWidth]%; -ko-attr-width: @[hrStyle.hrWidth]%">
1050
+ <tr>
1051
+ <td width="100%" height="1" style="font-size:1px; line-height: 1px; width: 100%; background-color: #3f3f3f;
1052
+ -ko-background-color: @hrStyle.color; -ko-attr-height: @hrStyle.hrHeight; -ko-line-height: @[hrStyle.hrHeight]px">&nbsp;</td>
1053
+ </tr>
1054
+ </table>
1055
+ </td>
1056
+ </tr>
1057
+ </table>
1058
+ </div>
1059
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1060
+ </td>
1061
+ </tr>
1062
+ </table>
1063
+ <!-- /hrBlock -->
1064
+
1065
+ <!-- buttonBlock -->
1066
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
1067
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="buttonBlock">
1068
+ <tr>
1069
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
1070
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
1071
+
1072
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
1073
+ <div class="oldwebkit">
1074
+ <table width="570" border="0" cellpadding="0" cellspacing="18" class="vb-container fullpad" bgcolor="#ffffff"
1075
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
1076
+ <tr>
1077
+ <td valign="top" bgcolor="#ffffff" style="background-color: #ffffff;
1078
+ -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor" align="center">
1079
+
1080
+ <table cellpadding="0" border="0" align="center" cellspacing="0" class="mobile-full">
1081
+ <tr>
1082
+ <td width="auto" valign="middle" bgcolor="#bfbfbf" align="center" height="50"
1083
+ style="font-size:22px; font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; font-weight: normal;
1084
+ padding-left: 14px; padding-right: 14px; background-color: #bfbfbf; border-radius: 4px;
1085
+ -ko-attr-bgcolor: @bigButtonStyle.buttonColor; -ko-background-color: @bigButtonStyle.buttonColor;
1086
+ -ko-border-radius: @[bigButtonStyle.radius]px;
1087
+ -ko-font-size: @[bigButtonStyle.size]px; -ko-font-family: @bigButtonStyle.face; -ko-color: @bigButtonStyle.color; ">
1088
+ <a data-ko-link="link.url" data-ko-editable="link.text" href="" style="text-decoration: none; color: #3f3f3f; font-weight: normal;
1089
+ -ko-color: @bigButtonStyle.color;">BUTTON</a>
1090
+ </td>
1091
+ </tr>
1092
+ </table>
1093
+
1094
+ </td>
1095
+ </tr>
1096
+ </table>
1097
+ </div>
1098
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1099
+ </td>
1100
+ </tr>
1101
+ </table>
1102
+ <!-- /buttonBlock -->
1103
+
1104
+ <!-- imageBlock -->
1105
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf" style="background-color: #bfbfbf;
1106
+ -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="imageBlock">
1107
+ <tr>
1108
+ <td class="vb-outer" valign="top" align="center">
1109
+
1110
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
1111
+ <div class="oldwebkit">
1112
+ <table data-ko-display="gutterVisible eq false" width="570" class="vb-container fullwidth" cellpadding="0" border="0" bgcolor="#ffffff" align="center"
1113
+ cellspacing="0" style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor;">
1114
+ <tr>
1115
+ <td valign="top" align="center">
1116
+ <a data-ko-link="image.url" href="" style="text-decoration: none;"><img data-ko-editable="image.src"
1117
+ hspace="0" border="0" vspace="0" width="570" data-ko-placeholder-height="200"
1118
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=570%2C200" class="mobile-full"
1119
+ alt="" style="max-width: 570px; display: block; border-radius: 0px; width: 100%; height: auto; font-size: 13px;
1120
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px;
1121
+ -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color; -ko-attr-alt: @image.alt;" /></a>
1122
+ </td>
1123
+ </tr>
1124
+ </table>
1125
+ <table data-ko-display="gutterVisible" width="570" class="vb-container fullpad" cellpadding="0" border="0" bgcolor="#ffffff" align="center"
1126
+ cellspacing="18" style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor; display: none;">
1127
+ <tr>
1128
+ <td valign="top" align="center">
1129
+ <a data-ko-link="image.url" href="" style="text-decoration: none;"><img data-ko-editable="image.src"
1130
+ hspace="0" border="0" vspace="0" width="534" data-ko-placeholder-height="280"
1131
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=534%2C280" class="mobile-full"
1132
+ alt="" style="max-width: 534px; display: block; border-radius: 0px; width: 100%; height: auto; font-size: 13px;
1133
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px;
1134
+ -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color; -ko-attr-alt: @image.alt;" /></a>
1135
+ </td>
1136
+ </tr>
1137
+ </table>
1138
+ </div>
1139
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1140
+ </td>
1141
+ </tr>
1142
+ </table>
1143
+ <!-- imageBlock -->
1144
+
1145
+ <!-- doubleImageBlock -->
1146
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf" style="background-color: #bfbfbf;
1147
+ -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="doubleImageBlock">
1148
+ <tr>
1149
+ <td class="vb-outer" align="center" valign="top" bgcolor="#bfbfbf"
1150
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor">
1151
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
1152
+ <div class="oldwebkit">
1153
+ <table data-ko-display="gutterVisible eq false" width="570" class="vb-container fullwidth" cellpadding="0" border="0" bgcolor="#ffffff" align="center"
1154
+ cellspacing="0" style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor;">
1155
+ <tr>
1156
+ <td valign="top" align="center" class="mobile-row" style="font-size: 0">
1157
+
1158
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><![endif]-->
1159
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="285"><![endif]-->
1160
+ <div style="display:inline-block; max-width:285px; vertical-align:top; width:100%; width:100%; " class="mobile-full">
1161
+ <a data-ko-link="leftImage.url" href="" style="text-decoration: none;"><img data-ko-editable="leftImage.src"
1162
+ hspace="0" align="left" border="0" vspace="0" width="285" height="180" class="mobile-full"
1163
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=285%2C180"
1164
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1165
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1166
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @leftImage.alt;" /></a>
1167
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
1168
+ <td align="left" valign="top" width="285">
1169
+ <![endif]--><div style="display:inline-block; max-width:285px; vertical-align:top; width:100%; width:100%; " class="mobile-full">
1170
+ <a data-ko-link="rightImage.url" href="" style="text-decoration: none;"><img data-ko-editable="rightImage.src"
1171
+ hspace="0" align="right" border="0" vspace="0" width="285" height="180" class="mobile-full"
1172
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=285%2C180"
1173
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1174
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1175
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @rightImage.alt;" /></a>
1176
+ </div>
1177
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
1178
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
1179
+ </td>
1180
+ </tr>
1181
+ </table>
1182
+ <table data-ko-display="gutterVisible" width="570" class="vb-row fullpad" border="0" cellpadding="0" cellspacing="9" bgcolor="#ffffff"
1183
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor; display: none;">
1184
+ <tr>
1185
+ <td align="center" valign="top" bgcolor="#ffffff" style="background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor; font-size: 0">
1186
+
1187
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="552"><tr><![endif]-->
1188
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="276"><![endif]-->
1189
+ <div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full">
1190
+
1191
+ <table class="vb-content" width="276" style="width: 100%" border="0" cellpadding="0" cellspacing="9" align="left">
1192
+ <tr>
1193
+ <td valign="top">
1194
+ <a data-ko-link="leftImage.url" href="" style="text-decoration: none;">
1195
+ <img data-ko-editable="leftImage.src"
1196
+ hspace="0" align="left" border="0" vspace="0" width="258" height="180"
1197
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=258%2C180" class="mobile-full"
1198
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1199
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1200
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @leftImage.alt;" /></a>
1201
+ </td>
1202
+ </tr>
1203
+ </table>
1204
+
1205
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
1206
+ <td align="left" valign="top" width="276">
1207
+ <![endif]--><div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full">
1208
+
1209
+ <table class="vb-content" width="276" style="width: 100%" border="0" cellpadding="0" cellspacing="9" align="right">
1210
+ <tr>
1211
+ <td valign="top">
1212
+ <a data-ko-link="rightImage.url" href="" style="text-decoration: none;"><img data-ko-editable="rightImage.src"
1213
+ hspace="0" align="right" border="0" vspace="0" width="258" height="180"
1214
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=258%2C180" class="mobile-full"
1215
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1216
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1217
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @rightImage.alt;" /></a>
1218
+ </td>
1219
+ </tr>
1220
+ </table>
1221
+
1222
+ </div>
1223
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
1224
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
1225
+
1226
+ </td>
1227
+ </tr>
1228
+ </table>
1229
+ </div>
1230
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1231
+ </td>
1232
+ </tr>
1233
+ </table>
1234
+ <!-- /doubleImageBlock -->
1235
+
1236
+ <!-- tripleImageBlock -->
1237
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf" style="background-color: #bfbfbf;
1238
+ -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="tripleImageBlock">
1239
+ <tr>
1240
+ <td class="vb-outer" valign="top" align="center" style="">
1241
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
1242
+ <div class="oldwebkit">
1243
+ <table data-ko-display="gutterVisible eq false" width="570" class="vb-container fullwidth" cellpadding="0" border="0" bgcolor="#ffffff" align="center"
1244
+ cellspacing="0" style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor;">
1245
+ <tr>
1246
+ <td valign="top" align="center" class="mobile-row" style="font-size: 0">
1247
+
1248
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><![endif]-->
1249
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="190"><![endif]-->
1250
+ <div style="display:inline-block; max-width:190px; vertical-align:top; width:100%; " class="mobile-full">
1251
+ <a data-ko-link="leftImage.url" href="" style="text-decoration: none;"><img data-ko-editable="leftImage.src"
1252
+ hspace="0" align="left" border="0" vspace="0" width="190" height="160" class="mobile-full"
1253
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=190%2C160"
1254
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1255
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1256
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @leftImage.alt;" /></a>
1257
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
1258
+ <td align="left" valign="top" width="190">
1259
+ <![endif]--><div style="display:inline-block; max-width:190px; vertical-align:top; width:100%; " class="mobile-full">
1260
+ <a data-ko-link="middleImage.url" href="" style="text-decoration: none;"><img data-ko-editable="middleImage.src"
1261
+ hspace="0" align="left" border="0" vspace="0" width="190" height="160" class="mobile-full"
1262
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=190%2C160"
1263
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1264
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1265
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @middleImage.alt;" /></a>
1266
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
1267
+ <td align="left" valign="top" width="190">
1268
+ <![endif]--><div style="display:inline-block; max-width:190px; vertical-align:top; width:100%; " class="mobile-full">
1269
+ <a data-ko-link="rightImage.url" href="" style="text-decoration: none;"><img data-ko-editable="rightImage.src"
1270
+ hspace="0" align="right" border="0" vspace="0" width="190" height="160" class="mobile-full"
1271
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=190%2C160"
1272
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1273
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1274
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @rightImage.alt;" /></a>
1275
+ </div>
1276
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
1277
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
1278
+ </td>
1279
+ </tr>
1280
+ </table>
1281
+ <table data-ko-display="gutterVisible" width="570" border="0" cellpadding="0" cellspacing="9" bgcolor="#ffffff" class="vb-row fullpad"
1282
+ style="width: 100%; max-width: 570px; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor; display: none;">
1283
+ <tr>
1284
+ <td align="center" valign="top" bgcolor="#ffffff" style="font-size: 0; background-color: #ffffff; -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor">
1285
+
1286
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="552"><tr><![endif]-->
1287
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="184"><![endif]-->
1288
+ <div style="display:inline-block; max-width:184px; vertical-align:top; width:100%;" class="mobile-full">
1289
+
1290
+ <table class="vb-content" width="184" style="width: 100%" border="0" cellpadding="0" cellspacing="9" align="left">
1291
+ <tr>
1292
+ <td valign="top">
1293
+ <a data-ko-link="leftImage.url" href="" style="text-decoration: none;"><img data-ko-editable="leftImage.src"
1294
+ hspace="0" align="left" border="0" vspace="0" width="166" height="160"
1295
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C160" class="mobile-full"
1296
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1297
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1298
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @leftImage.alt;" /></a>
1299
+ </td>
1300
+ </tr>
1301
+ </table>
1302
+
1303
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
1304
+ <td align="left" valign="top" width="184">
1305
+ <![endif]--><div style="display:inline-block; max-width:184px; vertical-align:top; width:100%;" class="mobile-full">
1306
+
1307
+ <table class="vb-content" width="184" style="width: 100%" border="0" cellpadding="0" cellspacing="9" align="left">
1308
+ <tr>
1309
+ <td valign="top">
1310
+ <a data-ko-link="middleImage.url" href="" style="text-decoration: none"><img data-ko-editable="middleImage.src"
1311
+ hspace="0" align="left" border="0" vspace="0" width="166" height="160"
1312
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C160" class="mobile-full"
1313
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1314
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1315
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @middleImage.alt;" /></a>
1316
+ </td>
1317
+ </tr>
1318
+ </table>
1319
+
1320
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
1321
+ <td align="left" valign="top" width="184">
1322
+ <![endif]--><div style="display:inline-block; max-width:184px; vertical-align:top; width:100%;" class="mobile-full">
1323
+
1324
+ <table class="vb-content" width="184" style="width: 100%" border="0" cellpadding="0" cellspacing="9" align="right">
1325
+ <tr>
1326
+ <td valign="top">
1327
+ <a data-ko-link="rightImage.url" href="" style="text-decoration: none"><img data-ko-editable="rightImage.src"
1328
+ hspace="0" align="right" border="0" vspace="0" width="166" height="160"
1329
+ src="http://mosaico.io/srv/f-default/img?method=placeholder&amp;params=166%2C160" class="mobile-full"
1330
+ alt="" style="display: block; border-radius: 0px; width: 100%; height: auto;font-size: 13px;
1331
+ font-family: Arial, Helvetica, sans-serif; color: #3f3f3f; -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face;
1332
+ -ko-color: @longTextStyle.color; -ko-attr-height: @imageHeight; -ko-attr-alt: @rightImage.alt;" /></a>
1333
+ </td>
1334
+ </tr>
1335
+ </table>
1336
+
1337
+ </div>
1338
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
1339
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
1340
+
1341
+ </td>
1342
+ </tr>
1343
+ </table>
1344
+ </div>
1345
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1346
+ </td>
1347
+ </tr>
1348
+ </table>
1349
+ <!-- /tripleImageBlock -->
1350
+
1351
+ <!-- spacerBlock -->
1352
+ <table class="vb-outer" width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#bfbfbf"
1353
+ style="background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor; -ko-attr-bgcolor: @externalBackgroundColor" data-ko-block="spacerBlock">
1354
+ <tr>
1355
+ <td class="vb-outer" valign="top" align="center" bgcolor="#bfbfbf" height="24"
1356
+ style="-ko-attr-height: @spacerSize; height: 24px; -ko-height: @[spacerSize]px; background-color: #bfbfbf; -ko-background-color: @externalBackgroundColor;
1357
+ -ko-attr-bgcolor: @externalBackgroundColor; font-size:1px; line-height: 1px;">&nbsp;</td>
1358
+ </tr>
1359
+ </table>
1360
+ <!-- /spacerBlock -->
1361
+
1362
+ <!-- socialBlock -->
1363
+ <table width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#3f3f3f"
1364
+ style="background-color: #3f3f3f; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor" data-ko-block="socialBlock">
1365
+ <tr>
1366
+ <td align="center" valign="top" bgcolor="#3f3f3f" style="background-color: #3f3f3f;
1367
+ -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor;">
1368
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
1369
+ <div class="oldwebkit">
1370
+ <table width="570" style="width: 100%; max-width: 570px" border="0" cellpadding="0" cellspacing="9" class="vb-row fullpad" align="center">
1371
+ <tr>
1372
+ <td valign="top" align="center" style="font-size: 0;">
1373
+
1374
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="552"><tr><![endif]-->
1375
+ <!--[if (gte mso 9)|(lte ie 8)]><td align="left" valign="top" width="276"><![endif]-->
1376
+ <div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full">
1377
+
1378
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="276" style="width: 100%" align="left">
1379
+ <tr>
1380
+ <td valign="middle" align="left"
1381
+ style="font-size: 13px; font-family: Arial, Helvetica, sans-serif; color: #919191; text-align:left;
1382
+ -ko-font-size: @[longTextStyle.size]px; -ko-font-family: @longTextStyle.face; -ko-color: @longTextStyle.color"
1383
+ data-ko-editable="longText" class="long-text links-color mobile-textcenter">
1384
+ <p>Address and <a href="">Contacts</a></p>
1385
+ </td>
1386
+ </tr>
1387
+ </table>
1388
+
1389
+ </div><!--[if (gte mso 9)|(lte ie 8)]></td>
1390
+ <td align="left" valign="top" width="276">
1391
+ <![endif]--><div style="display:inline-block; max-width:276px; vertical-align:top; width:100%;" class="mobile-full">
1392
+
1393
+ <table class="vb-content" border="0" cellspacing="9" cellpadding="0" width="276" style="width: 100%" align="right">
1394
+ <tr>
1395
+ <td align="right" valign="middle" class="links-color socialLinks mobile-textcenter" data-ko-display="socialIconType eq 'colors'">
1396
+ <span data-ko-display="fbVisible" data-ko-wrap="false">&nbsp;</span>
1397
+ <a data-ko-display="fbVisible" href="" style="-ko-attr-href: @fbUrl">
1398
+ <img src="img/social_def/facebook_ok.png" alt="Facebook" border="0" class="socialIcon" />
1399
+ </a>
1400
+ <span data-ko-display="twVisible" data-ko-wrap="false">&nbsp;</span>
1401
+ <a data-ko-display="twVisible" href="" style="-ko-attr-href: @twUrl">
1402
+ <img src="img/social_def/twitter_ok.png" alt="Twitter" border="0" class="socialIcon" />
1403
+ </a>
1404
+ <span data-ko-display="ggVisible" data-ko-wrap="false">&nbsp;</span>
1405
+ <a data-ko-display="ggVisible" href="" style="-ko-attr-href: @ggUrl">
1406
+ <img src="img/social_def/google+_ok.png" alt="Google+" border="0" class="socialIcon" />
1407
+ </a>
1408
+ <span data-ko-display="webVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1409
+ <a data-ko-display="webVisible" href="" style="-ko-attr-href: @webUrl; display: none">
1410
+ <img src="img/social_def/web_ok.png" alt="Web" border="0" class="socialIcon" />
1411
+ </a>
1412
+ <span data-ko-display="inVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1413
+ <a data-ko-display="inVisible" href="" style="-ko-attr-href: @inUrl; display: none">
1414
+ <img src="img/social_def/linkedin_ok.png" alt="Linkedin" border="0" class="socialIcon" />
1415
+ </a>
1416
+ <span data-ko-display="flVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1417
+ <a data-ko-display="flVisible" href="" style="-ko-attr-href: @flUrl; display: none">
1418
+ <img src="img/social_def/flickr_ok.png" alt="Flickr" border="0" class="socialIcon" />
1419
+ </a>
1420
+ <span data-ko-display="viVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1421
+ <a data-ko-display="viVisible" href="" style="-ko-attr-href: @viUrl; display: none">
1422
+ <img src="img/social_def/vimeo_ok.png" alt="Vimeo" border="0" class="socialIcon" />
1423
+ </a>
1424
+ <span data-ko-display="instVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1425
+ <a data-ko-display="instVisible" href="" style="-ko-attr-href: @instUrl; display: none">
1426
+ <img src="img/social_def/instagram_ok.png" alt="Instagram" border="0" class="socialIcon" />
1427
+ </a>
1428
+ <span data-ko-display="youVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1429
+ <a data-ko-display="youVisible" href="" style="-ko-attr-href: @youUrl; display: none">
1430
+ <img src="img/social_def/youtube_ok.png" alt="Youtube" border="0" class="socialIcon" />
1431
+ </a>
1432
+ </td>
1433
+ <td align="right" valign="middle" class="links-color socialLinks mobile-textcenter" data-ko-display="socialIconType eq 'bw'"
1434
+ style="display: none">
1435
+ <span data-ko-display="fbVisible" data-ko-wrap="false">&nbsp;</span>
1436
+ <a data-ko-display="fbVisible" href="" style="-ko-attr-href: @fbUrl">
1437
+ <img src="img/social_def/facebook_bw_ok.png" alt="Facebook" border="0" class="socialIcon" />
1438
+ </a>
1439
+ <span data-ko-display="twVisible" data-ko-wrap="false">&nbsp;</span>
1440
+ <a data-ko-display="twVisible" href="" style="-ko-attr-href: @twUrl">
1441
+ <img src="img/social_def/twitter_bw_ok.png" alt="Twitter" border="0" class="socialIcon" />
1442
+ </a>
1443
+ <span data-ko-display="ggVisible" data-ko-wrap="false">&nbsp;</span>
1444
+ <a data-ko-display="ggVisible" href="" style="-ko-attr-href: @ggUrl">
1445
+ <img src="img/social_def/google+_bw_ok.png" alt="Google+" border="0" class="socialIcon" />
1446
+ </a>
1447
+ <span data-ko-display="webVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1448
+ <a data-ko-display="webVisible" href="" style="-ko-attr-href: @webUrl; display: none">
1449
+ <img src="img/social_def/web_bw_ok.png" alt="Web" border="0" class="socialIcon" />
1450
+ </a>
1451
+ <span data-ko-display="inVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1452
+ <a data-ko-display="inVisible" href="" style="-ko-attr-href: @inUrl; display: none">
1453
+ <img src="img/social_def/linkedin_bw_ok.png" alt="Linkedin" border="0" class="socialIcon" />
1454
+ </a>
1455
+ <span data-ko-display="flVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1456
+ <a data-ko-display="flVisible" href="" style="-ko-attr-href: @flUrl; display: none">
1457
+ <img src="img/social_def/flickr_bw_ok.png" alt="Flickr" border="0" class="socialIcon" />
1458
+ </a>
1459
+ <span data-ko-display="viVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1460
+ <a data-ko-display="viVisible" href="" style="-ko-attr-href: @viUrl; display: none">
1461
+ <img src="img/social_def/vimeo_bw_ok.png" alt="Vimeo" border="0" class="socialIcon" />
1462
+ </a>
1463
+ <span data-ko-display="instVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1464
+ <a data-ko-display="instVisible" href="" style="-ko-attr-href: @instUrl; display: none">
1465
+ <img src="img/social_def/instagram_bw_ok.png" alt="Instagram" border="0" class="socialIcon" />
1466
+ </a>
1467
+ <span data-ko-display="youVisible" data-ko-wrap="false" style="display: none">&nbsp;</span>
1468
+ <a data-ko-display="youVisible" href="" style="-ko-attr-href: @youUrl; display: none">
1469
+ <img src="img/social_def/youtube_bw_ok.png" alt="Youtube" border="0" class="socialIcon" />
1470
+ </a>
1471
+ </td>
1472
+ </tr>
1473
+ </table>
1474
+
1475
+ </div>
1476
+ <!--[if (gte mso 9)|(lte ie 8)]></td><![endif]-->
1477
+ <!--[if (gte mso 9)|(lte ie 8)]></tr></table><![endif]-->
1478
+
1479
+ </td>
1480
+ </tr>
1481
+ </table>
1482
+ </div>
1483
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1484
+ </td>
1485
+ </tr>
1486
+ </table>
1487
+ <!-- /socialBlock -->
1488
+
1489
+ </div>
1490
+
1491
+ <!-- footerBlock -->
1492
+ <table width="100%" cellpadding="0" border="0" cellspacing="0" bgcolor="#3f3f3f"
1493
+ style="background-color: #3f3f3f; -ko-background-color: @backgroundColor; -ko-attr-bgcolor: @backgroundColor" data-ko-block="footerBlock">
1494
+ <tr>
1495
+ <td align="center" valign="top" bgcolor="#3f3f3f" style="background-color: #3f3f3f;
1496
+ -ko-attr-bgcolor: @backgroundColor; -ko-background-color: @backgroundColor">
1497
+
1498
+ <!--[if (gte mso 9)|(lte ie 8)]><table align="center" border="0" cellspacing="0" cellpadding="0" width="570"><tr><td align="center" valign="top"><![endif]-->
1499
+ <div class="oldwebkit">
1500
+ <table width="570" style="width: 100%; max-width: 570px" border="0" cellpadding="0" cellspacing="9" class="vb-container halfpad" align="center">
1501
+ <tr>
1502
+ <td data-ko-editable="longText" class="long-text links-color"
1503
+ style="text-align:center; font-size: 13px;color: #919191; font-weight: normal; text-align:center; font-family: Arial, Helvetica, sans-serif;
1504
+ -ko-font-size: @[longTextStyle.size]px; -ko-color: @longTextStyle.color; -ko-font-family: @longTextStyle.face"><p>Email sent to <a href="mailto:[mail]">[mail]</a></p></td>
1505
+ </tr>
1506
+ <tr>
1507
+ <td style="text-align: center;">
1508
+ <a style="text-decoration: underline; color: #ffffff; text-align: center; font-size: 13px;
1509
+ font-weight: normal; font-family: Arial, Helvetica, sans-serif;
1510
+ -ko-text-decoration: @linkStyle.decoration; -ko-color: @[Color.readability(linkStyle.color, backgroundColor) gt 2 ? linkStyle.color : (Color.isReadable('#ffffff', backgroundColor) ? '#ffffff' : '#000000')]; -ko-font-size: @[linkStyle.size]px; -ko-font-family: @linkStyle.face"
1511
+ href="[unsubscribe_link]"><span data-ko-editable="disiscrivitiText">Unsubscribe</span></a>
1512
+ </td>
1513
+ </tr>
1514
+
1515
+ <tr data-ko-display="_root_.sponsor.visible" style="display: none;text-align:center">
1516
+ <td align="center">
1517
+ <a href="" style="-ko-attr-href: @_root_.sponsor.url;"><img border="0" hspace="0" vspace="0" src="img/sponsor.gif" alt="sponsor"
1518
+ style="Margin:auto;display:inline !important; -ko-attr-src: @_root_.sponsor.src; -ko-attr-alt: @_root_.sponsor.alt" /></a>
1519
+ </td>
1520
+ </tr>
1521
+ </table>
1522
+ </div>
1523
+ <!--[if (gte mso 9)|(lte ie 8)]></td></tr></table><![endif]-->
1524
+ </td>
1525
+ </tr>
1526
+ </table>
1527
+ <!-- /footerBlock -->
1528
+
1529
+ </center>
1530
+ </body>
1531
+ </html>