]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
Fix path issues in documentation assets
authorGeoff Kimball <geoff@zurb.com>
Wed, 17 Feb 2016 18:35:55 +0000 (10:35 -0800)
committerGeoff Kimball <geoff@zurb.com>
Wed, 17 Feb 2016 18:35:55 +0000 (10:35 -0800)
docs/layouts/default.html
docs/pages/alignment.md
docs/pages/button.md
gulpfile.js

index f3fc62a27efeec0071d92d96fb9b324e986b6601..77f896af33e2685fe39f40427a5d0a7368dfe595 100644 (file)
@@ -23,7 +23,7 @@
           <h5>Foundation 6 is here!</h5>
         </div>
       </a>
-        
+
       {{> navigation}}
       {{> mobile-navigation}}
 
index da782ae63b3da81e8dcb37a5126b52da1f5f10d4..7f71a4e33284db200864f695dd9c42d9fa44ce9c 100644 (file)
@@ -1,8 +1,7 @@
 ---
 title: Alignment
 description: Centering made easy.
-sass: ./scss/ink/components/_alignment.scss
+sass: scss/components/_alignment.scss
 ---
 
 Just add the class center any element and you’ll be good to go. Inky will handle the magic behind the scenes! In the regular old CSS version, you’d have to fiddle with adding a “.center” class and a <code>&lt;center&gt;</code> tag to make sure things are centered. Now you just just need to add the class and move on ahead!
-
index 95494a6007052ce7489c21a36155f8f723096b44..ba53b148df8984a1b3e9b5cb705b0e04c57e75ec 100644 (file)
@@ -1,11 +1,11 @@
 ---
 title: Button
 description: Dynamic and effective calls to actions.
-sass: ./scss/ink/components/_button.scss
+sass: scss/components/_button.scss
 ---
 
-To get buttons that look awesome in most clients we make a table with the class <code>.button</code> that wraps your 
-<code>&lt;a&gt;</code> tag. Buttons expand to the full width of their container by default. You can contain the buttons in sub-grid or block-grid elements. 
+To get buttons that look awesome in most clients we make a table with the class <code>.button</code> that wraps your
+<code>&lt;a&gt;</code> tag. Buttons expand to the full width of their container by default. You can contain the buttons in sub-grid or block-grid elements.
 
 Check out this basic button:
 ```inky
index cea3712df8949821c013ddb5af6f5bf3ec9e0491..8c8055050f71a0bb97df7714eaae75749163f702 100644 (file)
@@ -50,7 +50,7 @@ gulp.task('sass:docs', function() {
 });
 
 gulp.task('sass:foundation', function() {
-  return gulp.src('scss/ink.scss')
+  return gulp.src('scss/foundation.scss')
     .pipe($.sass().on('error', $.sass.logError))
     .pipe(gulp.dest('_build/assets/css'));
 });