Skip to content

Commit

Permalink
Use bundle jquery
Browse files Browse the repository at this point in the history
-- Use the jquery that comes with foundation
-- Prefer zepto
-- Remove compass (we're not actually using it)
-- Itemize js and css includes, making it easier to comment
   some components out
-- Minor layout changes
-- Initialize foundation js on dom ready
-- Update foundation settings file to 4.2.2
  • Loading branch information
mattolson committed Jun 18, 2013
1 parent abe3df2 commit 3f485b4
Show file tree
Hide file tree
Showing 8 changed files with 132 additions and 9,930 deletions.
1 change: 0 additions & 1 deletion Gemfile
Expand Up @@ -5,7 +5,6 @@ gem "middleman-blog", "~> 3.2.0"
gem "kramdown"
gem "builder", "~> 3.0.0"
gem "zurb-foundation" , '~> 4.2.2', require: false
gem "compass"
gem "forgery"
gem "sitemap_generator"
gem "tzinfo"
Expand Down
1 change: 0 additions & 1 deletion Gemfile.lock
Expand Up @@ -101,7 +101,6 @@ PLATFORMS

DEPENDENCIES
builder (~> 3.0.0)
compass
forgery
kramdown
middleman (~> 3.1.0)
Expand Down
11 changes: 5 additions & 6 deletions README.md
@@ -1,21 +1,20 @@
# middleman-zurb-template

This is a [template](http://middlemanapp.com/getting-started/#toc_6) for the excellent [Middleman](http://middlemanapp.com/) static site generator that incorporates
several foundational components and reasonable defaults for building out a blog. As with all Middleman templates, using [Bundler](http://gembundler.com/)
[ZURB Foundation 4](http://foundation.zurb.com) and reasonable defaults for building out a blog. As with all Middleman templates, using [Bundler](http://gembundler.com/)
and [rbenv](https://github.com/sstephenson/rbenv/) is recommended.

## Features

* [middleman-blog](https://github.com/middleman/middleman-blog)
* [Zurb Foundation](http://foundation.zurb.com/)
* [middleman-blog 3.2](https://github.com/middleman/middleman-blog)
* [Zurb Foundation 4.2](http://foundation.zurb.com/)
* [Font Awesome](http://fortawesome.github.com/Font-Awesome)
* [respond.js](https://github.com/scottjehl/Respond)
* [jQuery 1.10.1](http://jquery.com/)
* Many elements and defaults from [HTML5 Boilerplate](http://html5boilerplate.com/)
* A warning overlay presented to older browsers
* A warning overlay presented to older IE browsers (< IE9)
* [Google Analytics](http://www.google.com/analytics/) integration
* Automatic XML Sitemap creation on build
* A sensible starter layout for a blog. You will most likely want to make numerous changes to the styling - I didn't make any assumptions about the design. Don't judge it on its looks, this isn't a blog theme, it is meant to be a foundation to build on.
* A sensible mobile-first starter layout for a blog. You will most likely want to make numerous changes to the styling - I didn't make any assumptions about the design. Don't judge it on its looks, this isn't a blog theme, it is meant to be a foundation to build on.

## Installation

Expand Down
17 changes: 15 additions & 2 deletions source/javascripts/application.js
@@ -1,3 +1,16 @@
//= require foundation
//= require foundation/foundation
//= require foundation/foundation.alerts
//= require foundation/foundation.clearing
//= require foundation/foundation.cookie
//= require foundation/foundation.dropdown
//= require foundation/foundation.forms
//= require foundation/foundation.joyride
//= require foundation/foundation.magellan
//= require foundation/foundation.orbit
//= require foundation/foundation.placeholder
//= require foundation/foundation.reveal
//= require foundation/foundation.section
//= require foundation/foundation.tooltips
//= require foundation/foundation.topbar
//= require foundation/foundation.interchange
//= require respond

0 comments on commit 3f485b4

Please sign in to comment.