]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
updates foundation css paths
authorRafiBomb <rafi@zurb.com>
Thu, 30 Jun 2016 20:09:38 +0000 (13:09 -0700)
committerRafiBomb <rafi@zurb.com>
Thu, 30 Jun 2016 20:09:38 +0000 (13:09 -0700)
docs/pages/css-guide.md
docs/pages/sass-guide.md
docs/partials/component-list.html
gulpfile.js
test/visual/_template.html

index 1a9ffc00b8fd3ef2d6abe5b955e246f6fa967565..93368a707e8587898293ef30fd0c6d42ef78d3d3 100644 (file)
@@ -23,7 +23,7 @@ Unzip the folder and open it in your text editor of choice.
 
 Here's a breakdown of the files in the folder you got:
 
-- `css/foundation.css`: the Foundation for Emails CSS.
+- `css/foundation-emails.css`: the Foundation for Emails CSS.
 - `index.html`: a blank boilerplate to get started.
 - `templates/`: a set of pre-made templates following common email layouts.
 
@@ -45,7 +45,7 @@ Inside `src/layouts/default.html`, you can see the boilerplate needed to make an
   <!-- Enables media queries -->
   <meta name="viewport" content="width=device-width"/>
   <!-- Link to the email's CSS, which will be inlined into the email -->
-  <link rel="stylesheet" href="assets/css/foundation.css">
+  <link rel="stylesheet" href="assets/css/foundation-emails.css">
 </head>
 
 <body>
@@ -156,7 +156,7 @@ Now that we have a basic email, the last thing we need to do before we can send
 
 Email clients like Gmail and Outlook strip out `<style>` tag from the `<head>` and Gmails strips it from the `<body>` of the email as well. It's best to have your CSS written inline within your markup. Hand writing all your CSS inline in a style tag would be a real pain and would take a long time.
 
-Our [web inliner](http://foundation.zurb.com/emails/inliner-v2.html) automates this process for you. To use it, paste in the contents of `index.html` into the HTML field, paste in the contents of `css/foundation.css` into the CSS field, and then press "Inline!". Once it's done, you'll see a large soup of HTML that is your inlined email.
+Our [web inliner](http://foundation.zurb.com/emails/inliner-v2.html) automates this process for you. To use it, paste in the contents of `index.html` into the HTML field, paste in the contents of `css/foundation-emails.css` into the CSS field, and then press "Inline!". Once it's done, you'll see a large soup of HTML that is your inlined email.
 
 Your email's CSS will include media queries for responsive styling which the inliner tool will move into the `<body>` so they are preserved.
 
index 1b03126223bbb378d0731caa9112a7bc2aaa6673..4139199abe13c1bc458d2402a10e9dee54d8da1f 100644 (file)
@@ -91,7 +91,7 @@ Inside `src/layouts/default.html`, you can see the boilerplate needed to make an
   <!-- Enables media queries -->
   <meta name="viewport" content="width=device-width"/>
   <!-- Link to the email's CSS, which will be inlined into the email -->
-  <link rel="stylesheet" href="assets/css/foundation.css">
+  <link rel="stylesheet" href="assets/css/foundation-emails.css">
 </head>
 
 <body>
index 896e66e24bb241ab680d5b7d0e0e4a63898e25cb..9a7ff03d6e5fbbfeb869e22d33aeb92c4c81ce08 100644 (file)
@@ -1,6 +1,6 @@
 <ul class="vertical menu docs-nav" id="docs-menu">
   <p class="docs-nav-version">
-    <span data-docs-version>v2.1.0</span>
+    <span data-docs-version>v2.2.0</span>
     <a href="https://github.com/zurb/foundation-emails/releases/" target="_blank">(Changelog)</a>
   </p>
 
index 9126b405d1a872d65ad2e592fa23377705e5ad63..fa9946b4d72063a26b82dd2ced4f25e136d48c8a 100644 (file)
@@ -148,7 +148,7 @@ gulp.task('test:compile', function() {
   gulp.src('test/visual/pages/*.html')
     .pipe($.wrap({ src: 'test/visual/_template.html' }))
     .pipe(inky())
-    .pipe(inliner('_build/assets/css/foundation.css'))
+    .pipe(inliner('_build/assets/css/foundation-emails.css'))
     .pipe(gulp.dest('test/visual/_build'));
 });
 
@@ -176,7 +176,7 @@ gulp.task('download:build:templates', ['templates'], function() {
 });
 
 gulp.task('download:build:css', ['sass:foundation'], function() {
-  return gulp.src('_build/assets/css/foundation.css')
+  return gulp.src('_build/assets/css/foundation-emails.css')
     .pipe(gulp.dest('.download/css'));
 })
 
index a4b87eb50df5bdc868b0fc52373db7a354c717ec..e1cfb5e0fc7c88b9be4ebe8e132a6a55c16d5fcb 100644 (file)
@@ -4,7 +4,7 @@
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="viewport" content="width=device-width" />
   <title>Title</title>
-  <link rel="stylesheet" href="../assets/css/foundation.css" />
+  <link rel="stylesheet" href="../assets/css/foundation-emails.css" />
 </head>
 
 <body>