Skip to content

Commit

Permalink
add foundation icon fonts 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesley Luyten committed Jan 13, 2015
1 parent 795e496 commit f2b423d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/templates/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"private": true,
"dependencies": {<% if (includeFoundation) { %>
"foundation": "~5.2",
"foundation-icon-fonts": "luwes/foundation-icon-fonts",
<% } if (includeModernizr) { %>
"modernizr": "~2.8.2",<% } %>
"jquery": "~2.1.1"
Expand Down
3 changes: 2 additions & 1 deletion app/templates/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ gulp.task('fonts', function () {
var streamqueue = require('streamqueue');
return streamqueue({objectMode: true},
gulp.src(mainBowerFiles()),
gulp.src('app/fonts/**/*')
gulp.src('app/fonts/**/*'),
gulp.src('app/bower_components/foundation-icon-fonts/fonts/**/*')
)
.pipe($.filter('**/*.{eot,svg,ttf,woff}'))
.pipe($.flatten())
Expand Down
2 changes: 1 addition & 1 deletion app/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="#"><%= appname %></a></h1>
<h1><a href="#"><i class="fi-foundation"></i> <%= appname %></a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span></span></a></li>
Expand Down

0 comments on commit f2b423d

Please sign in to comment.