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,79 @@
1
+ "use strict";
2
+ var path = require('path');
3
+
4
+ module.exports = function(grunt) {
5
+ grunt.registerMultiTask("makeThumbs", function(templateName) {
6
+ // var files = grunt.file.expand(this.data.src);
7
+ var async = require('async');
8
+ var data = this.data;
9
+ var script = this.data.script || './tasks/lib/phantom-thumbnailer-editor.js';
10
+ var done = this.async();
11
+ var tmplsDir;
12
+ try {
13
+ if (typeof templateName != 'undefined') {
14
+ tmplsDir = data.template.replace('%', templateName);
15
+ } else {
16
+ tmplsDir = grunt.file.expand(data.templates);
17
+ }
18
+ } catch (e) {
19
+ grunt.log.writeline('error');
20
+ }
21
+ grunt.log.writeln("Creating thumbnails for templates", tmplsDir);
22
+
23
+ async.eachSeries(tmplsDir, function(templateFile, callback) {
24
+ grunt.log.writeln("Creating thumbnail", templateFile);
25
+
26
+ // var templateFile = './templates/ml/template-ml.html';
27
+ var outFolder = path.join(path.dirname(templateFile),data.outputFolder);
28
+ var phantombin = require('phantomjs-prebuilt').path;
29
+ var args = [];
30
+ args.push(
31
+ script,
32
+ data.renderWidth,
33
+ data.outputWidth,
34
+ templateFile,
35
+ outFolder
36
+ );
37
+
38
+ // callback();
39
+ // return;
40
+
41
+ var phantomJSHandle = grunt.util.spawn({
42
+ cmd: phantombin,
43
+ args: args
44
+ }, function(err, result, code) {
45
+ if (!err) { callback(); return; }
46
+
47
+ // Ignore intentional cleanup.
48
+ if (code === 15 /* SIGTERM */){ grunt.log.writeln("XXX15"); return; }
49
+
50
+ // If we're here, something went horribly wrong.
51
+ grunt.verbose.or.writeln();
52
+ grunt.log.write('PhantomJS threw an error:').error();
53
+ // Print result to stderr because sometimes the 127 code means that a shared library is missing
54
+ String(result).split('\n').forEach(grunt.log.error, grunt.log);
55
+ if (code === 127) {
56
+ grunt.log.errorlns(
57
+ 'In order for this task to work properly, PhantomJS must be installed locally via NPM. ' +
58
+ 'If you\'re seeing this message, generally that means the NPM install has failed. ' +
59
+ 'Please submit an issue providing as much detail as possible at: ' +
60
+ 'https://github.com/gruntjs/grunt-lib-phantomjs/issues'
61
+ );
62
+ grunt.warn('PhantomJS not found.', code);
63
+ } else {
64
+ grunt.warn('PhantomJS exited unexpectedly with exit code ' + code + '.');
65
+ }
66
+ // callback();
67
+ });
68
+
69
+ phantomJSHandle.stdout.pipe(process.stdout);
70
+ phantomJSHandle.stderr.pipe(process.stderr);
71
+
72
+ }, function(err) {
73
+ if (typeof err != 'undefined') grunt.log.writeln(err);
74
+ done();
75
+ });
76
+
77
+ });
78
+
79
+ };
@@ -0,0 +1 @@
1
+ An example port of [TEDC15 Template](https://github.com/fcarneiro/tedc15_template) to Mosaico!
@@ -0,0 +1,567 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <style type="text/css">
5
+ @supports -ko-blockdefs {
6
+ width { label: Width; widget: integer; min: 500; max: 900; }
7
+ face { label: Font; widget: text; category: style; }
8
+ serifFace { label: Font Serif; extend: face; category: style; }
9
+ sansFace { label: Font Sans; extend: face; category: style; }
10
+ gutterWidth { label: Gutter; widget: integer; max: 40; min: 10; }
11
+ template { label: Template; properties: bodyWidth=660 gutterWidth=20 }
12
+ insertWidth { label: Inset Width; widget: integer; max: 600; min: 100; }
13
+ heroBlock { properties: insertWidth=340; }
14
+
15
+ url { label: Link; widget: url }
16
+ src { label: Image; widget: src }
17
+ alt {
18
+ label: Alternative Text;
19
+ widget: text;
20
+ help: Alternative text will be shown on email clients that does not download image automatically;
21
+ }
22
+
23
+ text { label: Paragraph; widget: text }
24
+ title { label: Title; widget: text }
25
+ subTitle { label: Subtitle; }
26
+
27
+ link {
28
+ label: Link;
29
+ properties: url text;
30
+ }
31
+
32
+ image { label: Image; properties: src url alt }
33
+
34
+ bodyTheme { label: Body; }
35
+ headerBlock { label: Header; }
36
+ heroBlock { label: Hero; }
37
+ threetwoBlock { label: 3x2 Articles; }
38
+ twoColumnBlock { label: 2 Columns; }
39
+ socialBlock { labsl: Social; }
40
+ footerBlock { label: Footer; }
41
+
42
+
43
+
44
+ }
45
+ </style>
46
+ </head>
47
+ <body style="background-color:#202020; color: #FFFFFF; margin:0;" text="#FFFFFF">
48
+ <center data-ko-container="main">
49
+ <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="background-color:#202020;" data-ko-block="headerBlock">
50
+ <!-- // 1-COLUMN SCAFFOLD -->
51
+ <tr>
52
+ <td align="center" height="100%" valign="top" width="100%" style="background-color:#F5F5F5; background:linear-gradient(to bottom, #D0D0D0, #F5F5F5);">
53
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:80px;">
54
+ <tr>
55
+ <td align="center" valign="top" style="padding:20px 10px 10px; -ko-padding:@[_root_.gutterWidth]px @[Math.floor(_root_.gutterWidth / 2)]px @[Math.floor(_root_.gutterWidth / 2)]px">
56
+ <a data-ko-link="image.url" href="http://www.nps.gov/" target="_blank"><img data-ko-editable="image.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/886bc879-0938-4e05-bd13-552b3bba5545.png?_ga=1.163168254.333388288.1383678580" alt="" height="125" width="96" style="-ko-attr-alt: @[image.alt]; border:0; color:#404040; font:bold 24px/100% Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:bold 24px/100% @_root_.sansFace; margin:0; padding:0;"></a>
57
+ </td>
58
+ </tr>
59
+ </table>
60
+ </td>
61
+ </tr>
62
+
63
+ </table>
64
+ <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="background-color:#202020;" data-ko-block="heroBlock">
65
+
66
+ <tr>
67
+ <td align="center" height="100%" valign="top" width="100%" style="background-color:#F5F5F5;">
68
+ <!--[if mso]>
69
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
70
+ <tr>
71
+ <td align="center" valign="top" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
72
+ <![endif]-->
73
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
74
+ <tr>
75
+ <td align="center" valign="top" style="padding-top:20px; -ko-padding-top:@[_root_.gutterWidth]px">
76
+ <!-- // HERO WITH LEFT CTA -->
77
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color:#FAFAFA; border-top:1px solid #FFFFFF; border-bottom:2px solid #E0E0E0; max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
78
+ <tr>
79
+ <td align="center" valign="top" style="font-size:0; padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
80
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
81
+ <tr>
82
+ <td align="center" valign="bottom">
83
+ <a data-ko-link="topImage.url" href="http://sierrawild.gov/wilderness/ansel-adams" target="_blank"><img data-ko-editable="topImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/fa1e451f-c3d7-4e2f-924a-0a24a6345c07.png?_ga=1.160144255.333388288.1383678580" alt="" height="200" width="640" style="-ko-attr-alt: @[topImage.alt]; -ko-attr-width: @[_root_.bodyWidth - _root_.gutterWidth]; border:0; height:auto; max-width:640px; -ko-max-width:@[_root_.bodyWidth - _root_.gutterWidth]px; vertical-align:bottom; width:100%;"></a>
84
+ </td>
85
+ </tr>
86
+ </table>
87
+ <!--[if mso]>
88
+ <table align="left" border="0" cellspacing="0" cellpadding="0" width="640" style="-ko-attr-width: @[_root_.bodyWidth - _root_.gutterWidth]">
89
+ <tr>
90
+ <td align="left" valign="top" width="340" style="-ko-attr-width:@[insertWidth]">
91
+ <![endif]-->
92
+ <div style="display:inline-block; max-width:340px; -ko-max-width:@[insertWidth]px; vertical-align:top; width:100%;">
93
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:340px; -ko-max-width:@[insertWidth]px;">
94
+ <tr>
95
+ <td align="center" valign="top" style="padding:10px 10px 0; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px @[Math.floor(_root_.gutterWidth / 2)]px 0">
96
+ <h2 data-ko-editable="title" style="color:#202020; font:24px/28px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:24px/28px @_root_.serifFace; margin:10px 0; padding:0; text-align:center;">Ansel Adams Wilderness</h2>
97
+ <p data-ko-editable="subTitle" style="color:#606060; font:16px/22px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:16px/22px @_root_.sansFace; margin:0 0 10px 0; padding:0; text-align:center;">Located in California's Sierra Nevada, the Ansel Adams Wilderness spans 231,533 acres of rugged beauty.</p>
98
+ <a data-ko-link="link.url" data-ko-editable="link.text" href="http://sierrawild.gov/wilderness/ansel-adams" target="_blank" style="background-color:#5A712D; border-top:10px solid #5A712D; border-right:20px solid #5A712D; border-bottom:10px solid #5A712D; border-left:20px solid #5A712D; border-radius:4px; box-shadow:#E0E0E0 0 2px 0; color:#FFFFFF; display:inline-block; font:18px/24px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:18px/24px @_root_.sansFace; letter-spacing:.5px; margin:5px auto 10px; text-align:center; text-decoration:none;">Plan Your Visit</a>
99
+ </td>
100
+ </tr>
101
+ </table>
102
+ </div>
103
+ <!--[if mso]>
104
+ </td>
105
+ <td align="right" valign="top" width="300" style="-ko-attr-width:@[_root_.bodyWidth - _root_.gutterWidth - insertWidth]">
106
+ <![endif]-->
107
+ <div style="display:inline-block; max-width:300px; -ko-max-width:@[_root_.bodyWidth - _root_.gutterWidth - insertWidth]px; vertical-align:top; width:100%;">
108
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px; -ko-max-width:@[_root_.bodyWidth - _root_.gutterWidth - insertWidth]px">
109
+ <tr>
110
+ <td align="center" valign="top">
111
+ <a data-ko-link="bottomRightImage.url" href="http://sierrawild.gov/wilderness/ansel-adams" target="_blank"><img data-ko-editable="bottomRightImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/a6c1b050-d275-4547-9e7b-9084b7c2b841.png?_ga=1.129588046.333388288.1383678580" alt="" height="200" width="300" style="-ko-attr-alt: @[bottomRightImage.alt]; -ko-attr-width:@[_root_.bodyWidth - _root_.gutterWidth - insertWidth]; border:0; height:auto; max-width:300px; -ko-max-width:@[_root_.bodyWidth - _root_.gutterWidth - insertWidth]px; vertical-align:bottom; width:100%;"></a>
112
+ </td>
113
+ </tr>
114
+ </table>
115
+ </div>
116
+ <!--[if mso]>
117
+ </td>
118
+ </tr>
119
+ </table>
120
+ <![endif]-->
121
+ </td>
122
+ </tr>
123
+ </table>
124
+ <!-- HERO WITH LEFT CTA // -->
125
+ </td>
126
+ </tr>
127
+
128
+ </table>
129
+ <!--[if mso]>
130
+ </td>
131
+ </tr>
132
+ </table>
133
+ <![endif]-->
134
+ </td>
135
+ </tr>
136
+ <!-- 1-COLUMN SCAFFOLD // -->
137
+ </table>
138
+ <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="background-color:#202020;" data-ko-block="threetwoBlock">
139
+ <tr>
140
+ <td align="center" height="100%" valign="top" width="100%" style="background-color:#F5F5F5;">
141
+ <!--[if mso]>
142
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
143
+ <tr>
144
+ <td align="center" valign="top" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
145
+ <![endif]-->
146
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
147
+
148
+ <tr>
149
+ <td align="center" valign="top" style="padding:20px 0; -ko-padding:@[_root_.gutterWidth]px 0">
150
+ <!-- // 3X2 GRID -->
151
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
152
+ <tr>
153
+ <td align="center" valign="top" style="padding-bottom:10px; -ko-padding-bottom:@[Math.floor(_root_.gutterWidth / 2)]px">
154
+ <h2 data-ko-editable="title" style="color:#202020; font:24px/28px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:24px/28px @_root_.serifFace; margin:10px 0; padding:0; text-align:center;">Experience Your America</h2>
155
+ <p data-ko-editable="subTitle" style="color:#606060; font:16px/22px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:16px/22px @_root_.sansFace; margin:0 10px 10px; padding:0; text-align:center;">The National Park Service turns 100 on August 25, 2016. As we lead up to the centennial, we invite you to learn, discover, be inspired, or simply have fun in <em>your</em> national parks.</p>
156
+ </td>
157
+ </tr>
158
+ <tr>
159
+ <td align="center" valign="top" style="font-size:0;">
160
+ <!--[if mso]>
161
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
162
+ <tr>
163
+ <td align="left" valign="top" width="220" style="-ko-attr-width:@[Math.floor(_root_.bodyWidth / 3)]">
164
+ <![endif]-->
165
+ <div style="display:inline-block; max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px; vertical-align:top; width:100%;">
166
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px;">
167
+ <tr>
168
+ <td align="center" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
169
+ <a data-ko-link="firstImage.url" href="http://www.nps.gov/grsm/" target="_blank"><img data-ko-editable="firstImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/d8a39ee8-4737-4a13-99b7-7ddbee1d7cf3.png?_ga=1.101488451.333388288.1383678580" alt="" height="100" width="200" style="-ko-attr-alt: @firstImage.alt; -ko-attr-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; border:0; height:auto; max-width:200px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; width:100%;"></a>
170
+ <h6 style="color:#202020; font:italic 14px/20px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:italic 14px/20px @_root_.serifFace; margin:5px 0 5px; padding:0; text-align:left;"><a data-ko-link="firstLink.url" data-ko-editable="firstLink.text" href="http://www.nps.gov/grsm/index.htm" target="_blank" style="color:#202020; text-decoration:none;">Great Smoky Mountains &rarr;</a></h6>
171
+ <div data-ko-editable="firstText" data-ko-wrap="false">
172
+ <p style="color:#AAAAAA; font:12px/16px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:12px/16px @_root_.sansFace; letter-spacing:1px; margin:0 0 10px 0; padding:0; text-align:left;">North Carolina &amp; Tennessee</p>
173
+ </div>
174
+ </td>
175
+ </tr>
176
+ </table>
177
+ </div>
178
+ <!--[if mso]>
179
+ </td>
180
+ <td align="left" valign="top" width="220" style="-ko-attr-width:@[Math.floor(_root_.bodyWidth / 3)]">
181
+ <![endif]-->
182
+ <div style="display:inline-block; max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px; vertical-align:top; width:100%;">
183
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px;">
184
+ <tr>
185
+ <td align="center" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
186
+ <a data-ko-link="secondImage.url" href="http://www.nps.gov/grca/" target="_blank"><img data-ko-editable="secondImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/9fb85227-9539-420e-9c42-3be734fe7c91.png?_ga=1.129675470.333388288.1383678580" alt="" height="100" width="200" style="-ko-attr-alt: @secondImage.alt; -ko-attr-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; border:0; height:auto; max-width:200px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; width:100%;"></a>
187
+ <h6 style="color:#202020; font:italic 14px/20px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:italic 14px/20px @_root_.serifFace; margin:5px 0 5px; padding:0; text-align:left;"><a data-ko-link="secondLink.url" data-ko-editable="secondLink.text" href="http://www.nps.gov/grca/" target="_blank" style="color:#202020; text-decoration:none;">Grand Canyon &rarr;</a></h6>
188
+ <div data-ko-editable="secondText" data-ko-wrap="false">
189
+ <p style="color:#AAAAAA; font:12px/16px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:12px/16px @_root_.sansFace; letter-spacing:1px; margin:0 0 10px 0; padding:0; text-align:left;">Arizona</p>
190
+ </div>
191
+ </td>
192
+ </tr>
193
+ </table>
194
+ </div>
195
+ <!--[if mso]>
196
+ </td>
197
+ <td align="left" valign="top" width="220" style="-ko-attr-width:@[Math.floor(_root_.bodyWidth / 3)]">
198
+ <![endif]-->
199
+ <div style="display:inline-block; max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px; vertical-align:top; width:100%;">
200
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px;">
201
+ <tr>
202
+ <td align="center" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
203
+ <a data-ko-link="thirdImage.url" href="http://www.nps.gov/yose/" target="_blank"><img data-ko-editable="thirdImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/f5de85a0-afb4-41c3-a0d4-da7fb29d94d3.png?_ga=1.129675470.333388288.1383678580" alt="" height="100" width="200" style="-ko-attr-alt: @thirdImage.alt; -ko-attr-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; border:0; height:auto; max-width:200px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; width:100%;"></a>
204
+ <h6 style="color:#202020; font:italic 14px/20px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:italic 14px/20px @_root_.serifFace; margin:5px 0 5px; padding:0; text-align:left;"><a data-ko-link="thirdLink.url" data-ko-editable="thirdLink.text" href="http://www.nps.gov/yose/" target="_blank" style="color:#202020; text-decoration:none;">Yosemite &rarr;</a></h6>
205
+ <div data-ko-editable="thirdText" data-ko-wrap="false">
206
+ <p style="color:#AAAAAA; font:12px/16px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:12px/16px @_root_.sansFace; letter-spacing:1px; margin:0 0 10px 0; padding:0; text-align:left;">California</p>
207
+ </div>
208
+ </td>
209
+ </tr>
210
+ </table>
211
+ </div>
212
+ <!--[if mso]>
213
+ </td>
214
+ </tr>
215
+ <tr>
216
+ <td align="left" valign="top" width="220" style="-ko-attr-width:@[Math.floor(_root_.bodyWidth / 3)]">
217
+ <![endif]-->
218
+ <div style="display:inline-block; max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px; vertical-align:top; width:100%;">
219
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px;">
220
+ <tr>
221
+ <td align="center" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
222
+ <a data-ko-link="fourthImage.url" href="http://www.nps.gov/yell/" target="_blank"><img data-ko-editable="fourthImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/5979d83f-f40b-436e-96aa-e835e5ec2ae5.png?_ga=1.129675470.333388288.1383678580" alt="" height="100" width="200" style="-ko-attr-alt: @fourthImage.alt; -ko-attr-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; border:0; height:auto; max-width:200px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; width:100%;"></a>
223
+ <h6 style="color:#202020; font:italic 14px/20px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:italic 14px/20px @_root_.serifFace; margin:5px 0 5px; padding:0; text-align:left;"><a data-ko-link="fourthLink.url" data-ko-editable="fourthLink.text" href="http://www.nps.gov/yell/" target="_blank" style="color:#202020; text-decoration:none;">Yellowstone &rarr;</a></h6>
224
+ <div data-ko-editable="fourthText" data-ko-wrap="false">
225
+ <p style="color:#AAAAAA; font:12px/16px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:12px/16px @_root_.sansFace; letter-spacing:1px; margin:0 0 10px 0; padding:0; text-align:left;">Wyoming, Montana, &amp; Idaho</p>
226
+ </div>
227
+ </td>
228
+ </tr>
229
+ </table>
230
+ </div>
231
+ <!--[if mso]>
232
+ </td>
233
+ <td align="left" valign="top" width="220" style="-ko-attr-width:@[Math.floor(_root_.bodyWidth / 3)]">
234
+ <![endif]-->
235
+ <div style="display:inline-block; max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px; vertical-align:top; width:100%;">
236
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px;">
237
+ <tr>
238
+ <td align="center" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
239
+ <a data-ko-link="fifthImage.url" href="http://www.nps.gov/romo/" target="_blank"><img data-ko-editable="fifthImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/7b52d685-d799-4b95-b360-1d418929df8c.png?_ga=1.129675470.333388288.1383678580" alt="" height="100" width="200" style="-ko-attr-alt: @fifthImage.alt; -ko-attr-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; border:0; height:auto; max-width:200px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; width:100%;"></a>
240
+ <h6 style="color:#202020; font:italic 14px/20px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:italic 14px/20px @_root_.serifFace; margin:5px 0 5px; padding:0; text-align:left;"><a data-ko-link="fifthLink.url" data-ko-editable="fifthLink.text" href="http://www.nps.gov/romo/" target="_blank" style="color:#202020; text-decoration:none;">Rocky Mountain &rarr;</a></h6>
241
+ <div data-ko-editable="fifthText" data-ko-wrap="false">
242
+ <p style="color:#AAAAAA; font:12px/16px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:12px/16px @_root_.sansFace; letter-spacing:1px; margin:0 0 10px 0; padding:0; text-align:left;">Colorado</p>
243
+ </div>
244
+ </td>
245
+ </tr>
246
+ </table>
247
+ </div>
248
+ <!--[if mso]>
249
+ </td>
250
+ <td align="left" valign="top" width="220" style="-ko-attr-width:@[Math.floor(_root_.bodyWidth / 3)]">
251
+ <![endif]-->
252
+ <div style="display:inline-block; max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px; vertical-align:top; width:100%;">
253
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:220px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3)]px;">
254
+ <tr>
255
+ <td align="center" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
256
+ <a data-ko-link="sixthImage.url" href="http://www.nps.gov/olym/" target="_blank"><img data-ko-editable="sixthImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/16602745-aa2d-4828-9619-1188db67ee04.png?_ga=1.101488451.333388288.1383678580" alt="" height="100" width="200" style="-ko-attr-alt: @fifthImage.alt; -ko-attr-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; border:0; height:auto; max-width:200px; -ko-max-width:@[Math.floor(_root_.bodyWidth / 3) - _root_.gutterWidth]; width:100%;"></a>
257
+ <h6 style="color:#202020; font:italic 14px/20px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:italic 14px/20px @_root_.serifFace; margin:5px 0 5px; padding:0; text-align:left;"><a data-ko-link="sixthLink.url" data-ko-editable="sixthLink.text" href="http://www.nps.gov/olym/" target="_blank" style="color:#202020; text-decoration:none;">Olympic &rarr;</a></h6>
258
+ <div data-ko-editable="sixthText" data-ko-wrap="false">
259
+ <p style="color:#AAAAAA; font:12px/16px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:12px/16px @_root_.sansFace; letter-spacing:1px; margin:0 0 10px 0; padding:0; text-align:left;">Washington</p>
260
+ </div>
261
+ </td>
262
+ </tr>
263
+ </table>
264
+ </div>
265
+ <!--[if mso]>
266
+ </td>
267
+ </tr>
268
+ </table>
269
+ <![endif]-->
270
+ </td>
271
+ </tr>
272
+ </table>
273
+ <!-- 3X2 GRID // -->
274
+ </td>
275
+ </tr>
276
+ </table>
277
+ <!--[if mso]>
278
+ </td>
279
+ </tr>
280
+ </table>
281
+ <![endif]-->
282
+ </td>
283
+ </tr>
284
+ <!-- 1-COLUMN SCAFFOLD // -->
285
+
286
+ </table>
287
+ <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="background-color:#202020;" data-ko-block="twoColumnBlock">
288
+
289
+ <!-- // 2-COLUMN SCAFFOLD -->
290
+ <tr>
291
+ <td align="center" height="100%" valign="top" width="100%" style="background-color:#FFFFFF;">
292
+ <!--[if mso]>
293
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
294
+ <tr>
295
+ <td align="center" valign="top" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
296
+ <![endif]-->
297
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
298
+ <tr>
299
+ <td align="center" valign="top" style="font-size:0; padding-top:30px; -ko-padding-top:@[Math.floor(_root_.gutterWidth * 3 / 2)]px">
300
+ <!--[if mso]>
301
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
302
+ <tr>
303
+ <td align="left" valign="top" width="330" style="-ko-attr-width: @[_root_.bodyWidth / 2]">
304
+ <![endif]-->
305
+ <div style="display:inline-block; max-width:330px; -ko-max-width:@[_root_.bodyWidth / 2]px; vertical-align:top; width:100%;">
306
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:330px; -ko-max-width:@[_root_.bodyWidth / 2]px">
307
+ <tr>
308
+ <td align="center" valign="top">
309
+ <!-- // TITLED IMAGE WITH CAPTION -->
310
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
311
+ <tr>
312
+ <td align="left" valign="top" style="font-size:0; padding:10px; -ko-padding: @[Math.floor(_root_.gutterWidth / 2)]px">
313
+ <!--[if mso]>
314
+ <table align="right" border="0" cellspacing="0" cellpadding="0" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
315
+ <tr>
316
+ <td align="left" valign="top" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
317
+ <![endif]-->
318
+ <div style="display:inline-block; max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px; width:100%;">
319
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px; background-color:#C16C2C;">
320
+ <tr>
321
+ <td align="left" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
322
+ <h5 data-ko-editable="leftTitle" style="color:#FFFFFF; font:bold 14px/20px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:bold 14px/20px @_root_.sansFace; letter-spacing:1px; margin:0; padding:0;">National Park Service Alert</h5>
323
+ </td>
324
+ </tr>
325
+ </table>
326
+ </div>
327
+ <!--[if mso]>
328
+ </td>
329
+ </tr>
330
+ </table>
331
+ <table align="left" border="0" cellspacing="0" cellpadding="0" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
332
+ <tr>
333
+ <td align="left" valign="top" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
334
+ <![endif]-->
335
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px;">
336
+ <tr>
337
+ <td align="center" valign="top">
338
+ <a data-ko-link="leftImage.url" href="http://www.nps.gov/yose/planyourvisit/mariposagrove.htm" target="_blank"><img data-ko-editable="leftImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/67cc818d-3bc4-4382-95c2-e7e113480c97.png?_ga=1.133796428.333388288.1383678580" alt="" height="" data-ko-placeholder-height="200" width="320" style="-ko-attr-alt:@leftImage.alt; -ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]; border:0; height:auto; max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px; width:100%;"></a>
339
+ </td>
340
+ </tr>
341
+ </table>
342
+ <!--[if mso]>
343
+ </td>
344
+ </tr>
345
+ </table>
346
+ <table align="right" border="0" cellspacing="0" cellpadding="0" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
347
+ <tr>
348
+ <td align="left" valign="top" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
349
+ <![endif]-->
350
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px;">
351
+ <tr>
352
+ <td align="left" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
353
+ <h3 data-ko-editable="leftSubTitle" style="color:#202020; font:20px/24px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:20px/24px @_root_.serifFace; margin:0 0 10px; padding:0; text-align:left;">Mariposa Grove</h3>
354
+ <div data-ko-editable="leftText" data-ko-wrap="false">
355
+ <p style="color:#606060; font:16px/22px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:16px/22px @_root_.sansFace; margin:0 0 10px 0; padding:0; text-align:left;">The Mariposa Grove of Giant Sequoias is closed until Spring 2017 for a project that will restore the grove's dynamic ecology and increase its resilience.</p>
356
+ </div> <a data-ko-link="leftLink.url" data-ko-editable="leftLink.text" href="http://www.nps.gov/yose/planyourvisit/mariposagrove.htm" target="_blank" style="border-bottom:2px solid #C16C2C; color:#C16C2C; font:bold 16px/22px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:bold 16px/22px @_root_.sansFace; letter-spacing:.5px; text-decoration:none;">Learn more &rarr;</a>
357
+ </td>
358
+ </tr>
359
+ </table>
360
+ <!--[if mso]>
361
+ </td>
362
+ </tr>
363
+ </table>
364
+ <![endif]-->
365
+ </td>
366
+ </tr>
367
+ </table>
368
+ <!-- TITLED IMAGE WITH CAPTION // -->
369
+ </td>
370
+ </tr>
371
+ </table>
372
+ </div>
373
+ <!--[if mso]>
374
+ </td>
375
+
376
+ <td align="left" valign="top" width="330" style="-ko-attr-width: @[_root_.bodyWidth / 2]">
377
+ <![endif]-->
378
+ <div style="display:inline-block; max-width:330px; -ko-max-width:@[_root_.bodyWidth / 2]px; vertical-align:top; width:100%;">
379
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:330px; -ko-max-width:@[_root_.bodyWidth / 2]px;">
380
+ <tr>
381
+ <td align="center" valign="top">
382
+ <!-- // TITLED IMAGE WITH CAPTION -->
383
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
384
+ <tr>
385
+ <td align="left" valign="top" style="font-size:0; padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
386
+ <!--[if mso]>
387
+ <table align="right" border="0" cellspacing="0" cellpadding="0" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
388
+ <tr>
389
+ <td align="left" valign="top" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
390
+ <![endif]-->
391
+ <div style="display:inline-block; max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px; width:100%;">
392
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px; background-color:#5A712D;">
393
+ <tr>
394
+ <td align="left" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
395
+ <h5 data-ko-editable="rightTitle" style="color:#FFFFFF; font:bold 14px/20px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:bold 14px/20px @_root_.sansFace; letter-spacing:1px; margin:0; padding:0;">Great Photo: Glacier National Park</h5>
396
+ </td>
397
+ </tr>
398
+ </table>
399
+ </div>
400
+ <!--[if mso]>
401
+ </td>
402
+ </tr>
403
+ </table>
404
+ <table align="left" border="0" cellspacing="0" cellpadding="0" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
405
+ <tr>
406
+ <td align="left" valign="top" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
407
+ <![endif]-->
408
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px;">
409
+ <tr>
410
+ <td align="center" valign="top">
411
+ <a data-ko-link="rightImage.url" href="http://www.nps.gov/glac/" target="_blank"><img data-ko-editable="rightImage.src" src="https://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/0f1b0bf1-67bd-4a6c-837c-932bff97118d.png?_ga=1.205151058.333388288.1383678580" alt="" height="" data-ko-placeholder-height="300" width="320" style="-ko-attr-alt: @rightImage.alt; -ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]; border:0; height:auto; max-width:320px; -ko-max-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]px; width:100%;"></a>
412
+ </td>
413
+ </tr>
414
+ </table>
415
+ <!--[if mso]>
416
+ </td>
417
+ </tr>
418
+ </table>
419
+ <![endif]-->
420
+ </td>
421
+ </tr>
422
+ </table>
423
+ <!-- TITLED IMAGE WITH CAPTION // -->
424
+ </td>
425
+ </tr>
426
+ </table>
427
+ </div>
428
+ <!--[if mso]>
429
+ </td>
430
+ </tr>
431
+ </table>
432
+ <![endif]-->
433
+ </td>
434
+ </tr>
435
+ </table>
436
+ <!--[if mso]>
437
+ </td>
438
+ </tr>
439
+ </table>
440
+ <![endif]-->
441
+ </td>
442
+ </tr>
443
+ <!-- 2-COLUMN SCAFFOLD // -->
444
+
445
+ </table>
446
+ <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="background-color:#202020;" data-ko-block="socialBlock">
447
+
448
+ <!-- // 1-COLUMN SCAFFOLD -->
449
+ <tr>
450
+ <td align="center" height="100%" valign="top" width="100%" style="background-color:#FFFFFF;">
451
+ <!--[if mso]>
452
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
453
+ <tr>
454
+ <td align="center" valign="top" width="660" style="-ko-attr-width: @[_root_.bodyWidth]">
455
+ <![endif]-->
456
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
457
+ <tr>
458
+ <td align="center" valign="top" style="padding-top:10px; -ko-padding-top:@[Math.floor(_root_.gutterWidth / 2)]px; padding-bottom:30px; -ko-padding-bottom:@[Math.floor(_root_.gutterWidth * 3 / 2)]px">
459
+ <!-- // SOCIAL MEDIA -->
460
+ <table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px; -ko-max-width:@[_root_.bodyWidth]px">
461
+ <tr>
462
+ <td align="left" valign="top" style="padding:10px; -ko-padding:@[Math.floor(_root_.gutterWidth / 2)]px">
463
+ <table border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color:#FAFAFA; border-bottom:2px solid #E0E0E0;">
464
+ <tr>
465
+ <td align="center" valign="top" style="padding-top:20px; -ko-padding-top:@[_root_.gutterWidth]px; padding-bottom:10px; -ko-padding-bottom:@[Math.floor(_root_.gutterWidth / 2)]px">
466
+ <h4 data-ko-editable="title" style="color:#202020; font:16px/20px Rawlinson, Georgia, 'Times', 'Times New Roman', serif; -ko-font:16px/20px @_root_.serifFace; letter-spacing:1px; margin:0 0 10px 0; padding:0;">Find Us Elsewhere</h4>
467
+ </td>
468
+ </tr>
469
+ <tr>
470
+ <td align="center" valign="top" style="font-size:0;">
471
+ <!--[if mso]>
472
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="640" style="-ko-attr-width: @[_root_.bodyWidth - _root_.gutterWidth]">
473
+ <tr>
474
+ <td align="center" valign="top" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
475
+ <![endif]-->
476
+ <div style="display:inline-block; min-width:190px; -ko-min-width:@[Math.floor(_root_.bodyWidth * .3)]; max-width:50%; width:100%;">
477
+ <table align="center" border="0" cellpadding="0" cellspacing="0">
478
+ <tr>
479
+ <td align="center" valign="middle" width="24" style="padding-right:10px; -ko-padding-right:@[Math.floor(_root_.gutterWidth / 2)]px; padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
480
+ <a data-ko-link="facebookUrl" href="https://www.facebook.com/nationalparkservice" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-color-facebook-48.png" alt="" height="24" width="24" style="border:0; display:block;"></a>
481
+ </td>
482
+ <td align="left" valign="middle" style="padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
483
+ <a data-ko-link="facebookUrl" href="https://www.facebook.com/nationalparkservice" target="_blank" style="color:#606060; font:14px/14px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:14px/14px @_root_.sansFace; margin:0 0 10px 0; padding:0; text-align:left; text-decoration:none;"><strong style="color:#202020 !important;" data-ko-editable="companyTitle">NPS</strong> on Facebook</a>
484
+ </td>
485
+ </tr>
486
+ <tr>
487
+ <td align="center" valign="middle" width="24" style="padding-right:10px; -ko-padding-right:@[Math.floor(_root_.gutterWidth / 2)]px; padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
488
+ <a data-ko-link="twitterUrl" href="https://twitter.com/NatlParkService" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-color-twitter-48.png" alt="" height="24" width="24" style="border:0; display:block;"></a>
489
+ </td>
490
+ <td align="left" valign="middle" style="padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
491
+ <a data-ko-link="twitterUrl" href="https://twitter.com/NatlParkService" target="_blank" style="color:#606060; font:14px/14px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:14px/14px @_root_.sansFace; margin:0 0 10px 0; padding:0; text-align:left; text-decoration:none;"><strong style="color:#202020 !important; -ko-bind-html: @companyTitle">NPS</strong> on Twitter</a>
492
+ </td>
493
+ </tr>
494
+ </table>
495
+ </div>
496
+ <!--[if mso]>
497
+ </td>
498
+ <td align="center" valign="top" width="320" style="-ko-attr-width:@[Math.floor((_root_.bodyWidth - _root_.gutterWidth)/2)]">
499
+ <![endif]-->
500
+ <div style="display:inline-block; min-width:190px; -ko-min-width:@[Math.floor(_root_.bodyWidth * .3)]; max-width:50%; width:100%;">
501
+ <table align="center" border="0" cellpadding="0" cellspacing="0">
502
+ <tr>
503
+ <td align="center" valign="middle" width="24" style="padding-right:10px; -ko-padding-right:@[Math.floor(_root_.gutterWidth / 2)]px; padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
504
+ <a data-ko-link="instagramUrl" href="https://instagram.com/nationalparkservice/" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-color-instagram-48.png" alt="" height="24" width="24" style="border:0; display:block;"></a>
505
+ </td>
506
+ <td align="left" valign="middle" style="padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
507
+ <a data-ko-link="instagramUrl" href="https://instagram.com/nationalparkservice/" target="_blank" style="color:#606060; font:14px/14px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:14px/14px @_root_.sansFace; margin:0 0 10px 0; padding:0; text-align:left; text-decoration:none;"><strong style="color:#202020 !important; -ko-bind-html: @companyTitle">NPS</strong> on Instagram</a>
508
+ </td>
509
+ </tr>
510
+ <tr>
511
+ <td align="center" valign="middle" width="24" style="padding-right:10px; -ko-padding-right:@[Math.floor(_root_.gutterWidth / 2)]px; padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
512
+ <a data-ko-link="youtubeUrl" href="https://www.youtube.com/user/NationalParkService" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-color-youtube-48.png" alt="" height="24" width="24" style="border:0; display:block;"></a>
513
+ </td>
514
+ <td align="left" valign="middle" style="padding-bottom:20px; -ko-padding-bottom:@[_root_.gutterWidth]px">
515
+ <a data-ko-link="youtubeUrl" href="https://www.youtube.com/user/NationalParkService" target="_blank" style="color:#606060; font:14px/14px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:14px/14px @_root_.sansFace; margin:0 0 10px 0; padding:0; text-align:left; text-decoration:none;"><strong style="color:#202020 !important; -ko-bind-html: @companyTitle">NPS</strong> on YouTube</a>
516
+ </td>
517
+ </tr>
518
+ </table>
519
+ </div>
520
+ <!--[if mso]>
521
+ </td>
522
+ </tr>
523
+ </table>
524
+ <![endif]-->
525
+ </td>
526
+ </tr>
527
+ </table>
528
+ </td>
529
+ </tr>
530
+ </table>
531
+ <!-- SOCIAL MEDIA // -->
532
+ </td>
533
+ </tr>
534
+ </table>
535
+ <!--[if mso]>
536
+ </td>
537
+ </tr>
538
+ </table>
539
+ <![endif]-->
540
+ </td>
541
+ </tr>
542
+
543
+ </table>
544
+ <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="background-color:#202020;" data-ko-block="footerBlock">
545
+
546
+ <tr>
547
+ <td align="center" height="100%" valign="top" width="100%" style="background-color:#202020;">
548
+ <table align="center" border="0" cellpadding="0" cellspacing="0">
549
+ <tr>
550
+ <td align="center" valign="top" style="padding:40px 20px 60px; -ko-padding:@[_root_.gutterWidth * 2]px @[_root_.gutterWidth]px @[_root_.gutterWidth * 3]px">
551
+ <div data-ko-editable="footerText" data-ko-wrap="false">
552
+ <p style="color:#E0E0E0; font:14px/18px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:14px/18px @_root_.sansFace; margin:0 0 2px 0; padding:0; text-align:center;">U.S. National Park Service</p>
553
+ <p style="color:#AAAAAA; font:14px/18px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:14px/18px @_root_.sansFace; margin:0 0 20px 0; padding:0; text-align:center;">1849 C Street N.W. &bull; Washington, DC 20240</p>
554
+ </div>
555
+ <div data-ko-editable="unsubscribeText" data-ko-wrap="false">
556
+ <p style="color:#AAAAAA; font:14px/18px Frutiger, 'Frutiger Linotype', 'Helvetica Neue', Helvetica, Arial, sans-serif; -ko-font:14px/18px @_root_.sansFace; margin:0 0 10px 0; padding:0; text-align:center;">Don't want to receive any more email from us?<br>Simply <a href="*|UNSUB|*" target="_blank" style="color:#E0E0E0;">unsubscribe</a> from our list.</p>
557
+ </div>
558
+ </td>
559
+ </tr>
560
+ </table>
561
+ </td>
562
+ </tr>
563
+ <!-- 1-COLUMN SCAFFOLD // -->
564
+ </table>
565
+ </center>
566
+ </body>
567
+ </html>