diff --git a/fixtures/default-template-app/Gemfile b/fixtures/default-template-app/Gemfile deleted file mode 100644 index e262801..0000000 --- a/fixtures/default-template-app/Gemfile +++ /dev/null @@ -1,8 +0,0 @@ -# frozen_string_literal: true - -source 'https://rubygems.org' - -gem 'middleman', github: 'middleman/middleman' -gem 'middleman-blog', github: 'middleman/middleman-blog' -gem 'middleman-syntax', github: 'middleman/middleman-syntax' -gem 'zurb-foundation', '~> 4.1.6' diff --git a/fixtures/default-template-app/config.rb b/fixtures/default-template-app/config.rb deleted file mode 100755 index f514e3c..0000000 --- a/fixtures/default-template-app/config.rb +++ /dev/null @@ -1,37 +0,0 @@ -# frozen_string_literal: true - -require 'zurb-foundation' - -spec = Gem::Specification.find_by_name('zurb-foundation') -set :js_assets_paths, [File.join(spec.gem_dir, 'js')] - -activate :directory_indexes - -activate :blog - -set :blog_name, 'Deep Thoughts' -set :blog_author, 'Nick Adams' -set :blog_avatar, 'http://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50' -set :top_nav_title, title: 'Home', target: 'index.html' -set :top_nav_items, [ - { title: 'About Me', target: 'about-me.html' }, - { title: 'Archives', target: 'archives.html' } - # { :title => "Other Page", :target => "other-page.html" } -] - -helpers do - def page_title - title = blog_name.dup - if current_page.data.title - title = "#{title}: #{current_page.data.title}" - elsif is_blog_article? - title = "#{title}: #{current_article.title}" - end - title - end - - def link_to_with_active(title, url, class_name = 'active') - active_class = current_resource == sitemap.find_resource_by_path(url) ? class_name : '' - link_to(title, url, class: active_class) - end -end diff --git a/fixtures/default-template-app/source/2013-04-01-new-article.html.markdown b/fixtures/default-template-app/source/2013-04-01-new-article.html.markdown deleted file mode 100755 index 8fd8aa8..0000000 --- a/fixtures/default-template-app/source/2013-04-01-new-article.html.markdown +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "This is a headline for a blog post if it’s two lines long." ---- - -Morbi dapibus scelerisque risus, non auctor enim varius vitae. Proin in eros tortor. Aliquam erat volutpat. Sed tempus mollis faucibus. Nunc nunc dolor, ullamcorper rhoncus malesuada in, consectetur vitae nisi. Nulla facilisi. - -## Heading Example - -Quisque varius euismod tempor. Nullam nisi risus, tempor in auctor ac, tempor eget nisl. Pellentesque fermentum luctus sapien vel pretium. In hac habitasse platea dictumst. Aliquam ac purus nec enim imperdiet vehicula a a risus. - -### Heading Example - -Quisque varius euismod tempor. Nullam nisi risus, tempor in auctor ac, tempor eget nisl. Pellentesque fermentum luctus sapien vel pretium. In hac habitasse platea dictumst. Aliquam ac purus nec enim imperdiet vehicula a a risus. - -#### Heading Example - -Quisque varius euismod tempor. Nullam nisi risus, tempor in auctor ac, tempor eget nisl. Pellentesque fermentum luctus sapien vel pretium. In hac habitasse platea dictumst. Aliquam ac purus nec enim imperdiet vehicula a a risus. - -##### Heading Example - -Quisque varius euismod tempor. Nullam nisi risus, tempor in auctor ac, tempor eget nisl. Pellentesque fermentum luctus sapien vel pretium. In hac habitasse platea dictumst. Aliquam ac purus nec enim imperdiet vehicula a a risus. - -###### Heading Example - -Quisque varius euismod tempor. Nullam nisi risus, tempor in auctor ac, tempor eget nisl. Pellentesque fermentum luctus sapien vel pretium. In hac habitasse platea dictumst. Aliquam ac purus nec enim imperdiet vehicula a a risus. diff --git a/fixtures/default-template-app/source/about-me.html.erb b/fixtures/default-template-app/source/about-me.html.erb deleted file mode 100644 index e69de29..0000000 diff --git a/fixtures/default-template-app/source/archives.html.erb b/fixtures/default-template-app/source/archives.html.erb deleted file mode 100644 index b230c62..0000000 --- a/fixtures/default-template-app/source/archives.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -
-

- Archive -

- -
\ No newline at end of file diff --git a/fixtures/default-template-app/source/index.html.erb b/fixtures/default-template-app/source/index.html.erb deleted file mode 100755 index 29a0ae7..0000000 --- a/fixtures/default-template-app/source/index.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -<% blog.articles[0...5].each_with_index do |article, i| %> -
- <%= article.date.strftime('%b %e %Y') %> - -

<%= article.title %>

- - <%= article.summary %> - -
read on »
-
-<% end %> \ No newline at end of file diff --git a/fixtures/default-template-app/source/javascripts/_zepto.pjax.js b/fixtures/default-template-app/source/javascripts/_zepto.pjax.js deleted file mode 100644 index 286632e..0000000 --- a/fixtures/default-template-app/source/javascripts/_zepto.pjax.js +++ /dev/null @@ -1,744 +0,0 @@ -// zepto.pjax.js -// copyright chris wanstrath -// https://github.com/defunkt/jquery-pjax -// https://github.com/shogun70/jquery-pjax - duration -// https://github.com/jimisaacs/zepto-pjax -// https://github.com/najeira/zepto-pjax -// https://github.com/cshenoy/zepto-pjax - zepto1.0 w/duration - -(function($){ - -/** - * Add noop to Zepto - should be in there already - * It's good to have to only reference one dummy function rather than create multiple empties. - */ -$.noop = function(){}; - - -// When called on a link, fetches the href with ajax into the -// container specified as the first parameter or with the data-pjax -// attribute on the link itself. -// -// Tries to make sure the back button and ctrl+click work the way -// you'd expect. -// -// Accepts a Zepto ajax options object that may include these -// pjax specific options: -// -// container - Where to stick the response body. Usually a String selector. -// $(container).html(xhr.responseBody) -// push - Whether to pushState the URL. Defaults to true (of course). -// replace - Want to use replaceState instead? That's cool. -// -// For convenience the first parameter can be either the container or -// the options object. -// -// Returns the jQuery object -$.fn.pjax = function( selector, container, options ) { - return this.on('click.pjax', selector, function(event){ - handleClick(event, container, options); - }); -}; - -// Public: pjax on click handler -// -// Exported as $.pjax.click. -// -// event - "click" Zepto.Event -// options - pjax options -// -// Examples -// -// $('a').live('click', $.pjax.click) -// // is the same as -// $('a').pjax() -// -// $(document).on('click', 'a', function(event) { -// var container = $(this).closest('[data-pjax-container]') -// return $.pjax.click(event, container) -// }) -// -// Returns false if pjax runs, otherwise nothing. -function handleClick(event, container, options) { - options = optionsFor(container, options); - var link = event.currentTarget; - - if (link.tagName.toUpperCase() !== 'A') - throw "$.fn.pjax or $.pjax.click requires an anchor element"; - - // Middle click, cmd click, and ctrl click should open - // links in a new tab as normal. - if ( event.which > 1 || event.metaKey || event.ctrlKey ) - return; - - // Ignore cross origin links - if ( location.protocol !== link.protocol || location.host !== link.host ) - return; - - // Ignore anchors on the same page - if (link.hash && link.href.replace(link.hash, '') === - location.href.replace(location.hash, '')) - return; - - // Ignore empty anchor "foo.html#" - if (link.href === location.href + '#') - return; - - var defaults = { - url: link.href, - container: $(link).attr('data-pjax'), - target: link, - clickedElement: $(link), // DEPRECATED: use target - fragment: null - }; - - $.pjax($.extend({}, defaults, options)); - - event.preventDefault(); -} - - -// Loads a URL with ajax, puts the response body inside a container, -// then pushState()'s the loaded URL. -// -// Works just like $.ajax in that it accepts a jQuery ajax -// settings object (with keys like url, type, data, etc). -// -// Accepts these extra keys: -// -// container - Where to stick the response body. -// $(container).html(xhr.responseBody) -// push - Whether to pushState the URL. Defaults to true (of course). -// replace - Want to use replaceState instead? That's cool. -// -// Use it just like $.ajax: -// -// var xhr = $.pjax({ url: this.href, container: '#main' }) -// console.log( xhr.readyState ) -// -// Returns whatever $.ajax returns. -var pjax = $.pjax = function( options ) { - - // options from handleClick fn - options = $.extend({}, $.ajaxSettings, pjax.defaults, options); - - if ($.isFunction(options.url)) { - options.url = options.url(); - } - - var target = options.target; - - // DEPRECATED: use options.target - if (!target && options.clickedElement) target = options.clickedElement[0]; - - var hash = parseURL(options.url).hash; - - // DEPRECATED: Save references to original event callbacks. However, - // listening for custom pjax:* events is prefered. - var oldBeforeSend = options.beforeSend, - oldComplete = options.complete, - oldSuccess = options.success, - oldError = options.error; - - var context = options.context = findContainerFor(options.container); - - // console.log(options, $.ajaxSettings); - //console.log(options, context, context.contents()); - - // We want the browser to maintain two separate internal caches: one - // for pjax'd partial page loads and one for normal page loads. - // Without adding this secret parameter, some browsers will often - // confuse the two. - if (!options.data) options.data = {}; - options.data._pjax = context.selector; - - function fire(type, args) { - console.log(' type ',type); - var event = $.Event(type, { relatedTarget: target }); - context.trigger(event, args); - if (event.isDefaultPrevented) { - return !event.isDefaultPrevented(); - } - return !event.defaultPrevented; - } - - var timeoutTimer, durationTimer; - var success, complete, error; - - options.beforeSend = function(xhr, settings) { - var timeout = settings.timeout; - if (settings.timeout > 0) { - timeoutTimer = setTimeout(function() { - if (fire('pjax:timeout', [xhr, options])) - xhr.abort('timeout'); - }, settings.timeout); - - // Clear timeout setting so jquerys internal timeout isn't invoked - settings.timeout = 0; - } - // No timeout for non-GET requests - // Its not safe to request the resource again with a fallback method. - if (settings.type !== 'GET') { - settings.timeout = 0; - } - - xhr.setRequestHeader('X-PJAX', 'true'); - xhr.setRequestHeader('X-PJAX-Container', context.selector); - - if (!fire('pjax:beforeSend', [xhr, settings])) - return false; - - - var duration = settings.duration; - if (timeoutTimer && duration >= timeout) duration = timeout - 1; - if ( (duration >= 0) && (duration != null) ) { - durationTimer = setTimeout(function() { - durationTimer = null; - if (complete) { - if (success) success(); - if (error) error(); // success and error are mutually exclusive - complete(); - return; - } - - // otherwise fire the waiting event - fire('pjax:waiting', [xhr, options]); - }, duration); - } - - if (options.push && !options.replace) { - // Cache current container element before replacing it - cachePush(pjax.state.id, context.clone(true, true).contents()); - - window.history.pushState(null, "", options.url); - } - - options.requestUrl = parseURL(settings.url).href; - - fire('pjax:start', [xhr, options]); - // start.pjax is deprecated - fire('start.pjax', [xhr, options]); - - fire('pjax:send', [xhr, settings]); - - }; - - options.complete = function(xhr, textStatus){ - complete = function() { _complete.call(options, xhr, textStatus); }; - if (!durationTimer) complete(); - }; - - function _complete(xhr, textStatus) { - if (timeoutTimer) - clearTimeout(timeoutTimer); - - // DEPRECATED: Invoke original `complete` handler - if (oldComplete) oldComplete.apply(this, arguments); - - fire('pjax:complete', [xhr, textStatus, options]); - - fire('pjax:end', [xhr, options]); - // end.pjax is deprecated - fire('end.pjax', [xhr, options]); - } - - options.error = function(xhr, textStatus, errorThrown) { - console.log('error'); - var container = extractContainer("", xhr, options); - - // DEPRECATED: Invoke original `error` handler - if (oldError) oldError.apply(this, arguments); - - var allowed = fire('pjax:error', [xhr, textStatus, errorThrown, options]); - if (textStatus !== 'abort' && allowed) - window.location = container.url; - }; - - options.success = function(data, status, xhr, options) { - success = function() { _success.call(options, data, status, xhr) } - if (!durationTimer) success(); - }; - - function _success(data, status, xhr) { - var container = extractContainer(data, xhr, options); - - if (!container.contents) { - window.location = container.url; - return; - } - - pjax.state = { - id: options.id || uniqueId(), - url: container.url, - title: container.title, - container: context.selector, - fragment: options.fragment, - timeout: options.timeout, - direction: options.direction, - duration: options.duration - }; - - if (options.push || options.replace) { - window.history.replaceState(pjax.state, container.title, container.url); - } - - if (container.title) document.title = container.title; - context.html(container.contents); - - // Scroll to top by default - if (typeof options.scrollTo === 'number' && $.scrollTop) - $(window).scrollTop(options.scrollTo); - - // Google Analytics support - if ( (options.replace || options.push) && window._gaq ) - _gaq.push(['_trackPageview']); - - // If the URL has a hash in it, make sure the browser - // knows to navigate to the hash. - if ( hash !== '' ) { - // Avoid using simple hash set here. Will add another history - // entry. Replace the url with replaceState and scroll to target - // by hand. - // - // window.location.hash = hash - var url = parseURL(container.url); - url.hash = hash; - - pjax.state.url = url.href; - window.history.replaceState(pjax.state, container.title, url.href); - - var target = $(url.hash); - if (target.length) $(window).scrollTop(target.offset().top); - } - - // DEPRECATED: Invoke original `success` handler - if (oldSuccess) oldSuccess.apply(this, arguments); - - fire('pjax:success', [data, status, xhr, options]); - } - - - // Initialize pjax.state for the initial page load. Assume we're - // using the container and options of the link we're loading for the - // back button to the initial page. This ensures good back button - // behavior. - if (!pjax.state) { - pjax.state = { - id: uniqueId(), - url: window.location.href, - title: document.title, - container: context.selector, - fragment: options.fragment, - timeout: options.timeout, - direction: options.direction - }; - window.history.replaceState(pjax.state, document.title); - } - - // Cancel the current request if we're already pjaxing - var xhr = pjax.xhr; - if ( xhr && xhr.readyState < 4) { - xhr.onreadystatechange = $.noop; - xhr.abort(); - } - - pjax.options = options; - pjax.xhr = $.ajax(options); - - // pjax event is deprecated - $(document).trigger('pjax', [pjax.xhr, options]); - - /*if (xhr.readyState > 0) { - // pjax event is deprecated - console.log('xhr readystate', xhr.readyState); - $(document).trigger('pjax', [xhr, options]); - - if (options.push && !options.replace) { - // Cache current container element before replacing it - cachePush(pjax.state.id, context.clone().contents()); - - window.history.pushState(null, "", options.url); - } - - if(!options.duration) { - fire('pjax:start', [xhr, options]); - fire('pjax:send', [xhr, options]); - } - }*/ - - return pjax.xhr; -}; - - -// Internal: Generate unique id for state object. -// -// Use a timestamp instead of a counter since ids should still be -// unique across page loads. -// -// Returns Number. -function uniqueId() { - return (new Date).getTime(); -} - -// Internal: Strips _pjax param from url -// -// url - String -// -// Returns String. -function stripPjaxParam(url) { - return url - .replace(/\?_pjax=[^&]+&?/, '?') - .replace(/_pjax=[^&]+&?/, '') - .replace(/[\?&]$/, ''); -} - -// Internal: Parse URL components and returns a Locationish object. -// -// url - String URL -// -// Returns HTMLAnchorElement that acts like Location. -function parseURL(url) { - var a = document.createElement('a'); - a.href = url; - return a; -} - -// Internal: Build options Object for arguments. -// -// For convenience the first parameter can be either the container or -// the options object. -// -// Examples -// -// optionsFor('#container') -// // => {container: '#container'} -// -// optionsFor('#container', {push: true}) -// // => {container: '#container', push: true} -// -// optionsFor({container: '#container', push: true}) -// // => {container: '#container', push: true} -// -// Returns options Object. -function optionsFor(container, options) { - // Both container and options - if ( container && options ) - options.container = container; - - // First argument is options Object - else if ( $.isPlainObject(container) ) - options = container; - - // Only container - else - options = {container: container}; - - // Find and validate container - if (options.container) - options.container = findContainerFor(options.container); - - return options; -} - -// Internal: Find container element for a variety of inputs. -// -// Because we can't persist elements using the history API, we must be -// able to find a String selector that will consistently find the Element. -// -// container - A selector String, jQuery object, or DOM Element. -// -// Returns a jQuery object whose context is `document` and has a selector. -function findContainerFor(container) { - container = $(container) - - if ( !container.length ) { - throw "no pjax container for " + container.selector - } else if ( container.selector !== '' && container.context === document ) { - return container - } else if ( container.attr('id') ) { - return $('#' + container.attr('id')) - } else { - throw "cant get selector for pjax container!" - } -} - -// Internal: Filter and find all elements matching the selector. -// -// Where $.fn.find only matches descendants, findAll will test all the -// top level elements in the jQuery object as well. -// -// elems - jQuery object of Elements -// selector - String selector to match -// -// Returns a jQuery object. -function findAll(elems, selector) { - var results = $() - elems.each(function() { - if ($(this).is(selector)) - results = results.add(this) - results = results.add(selector, this) - }) - return results -} - -// Internal: Extracts container and metadata from response. -// -// 1. Extracts X-PJAX-URL header if set -// 2. Extracts inline tags -// 3. Builds response Element and extracts fragment if set -// -// data - String response data -// xhr - XHR response -// options - pjax options Object -// -// Returns an Object with url, title, and contents keys. -function extractContainer(data, xhr, options) { - var obj = {}; - - // Prefer X-PJAX-URL header if it was set, otherwise fallback to - // using the original requested url. - obj.url = stripPjaxParam(xhr.getResponseHeader('X-PJAX-URL') || options.requestUrl); - - // Attempt to parse response html into elements - var $data = $(data); - - // If response data is empty, return fast - if ($data.length === 0) - return obj; - - // If there's a <title> tag in the response, use it as - // the page's title. - obj.title = findAll($data, 'title').last().text(); - - if (options.fragment) { - // If they specified a fragment, look for it in the response - // and pull it out. - var $fragment = findAll($data, options.fragment).first() - - if ($fragment.length) { - obj.contents = $fragment.contents() - - // If there's no title, look for data-title and title attributes - // on the fragment - if (!obj.title) - obj.title = $fragment.attr('title') || $fragment.data('title') - } - - } else if (!/<html/i.test(data)) { - obj.contents = $data - } - - // Clean up any <title> tags - if (obj.contents) { - // Remove any parent title elements - obj.contents = obj.contents.not('title') - - // Then scrub any titles from their descendents - obj.contents.find('title').remove() - } - - // Trim any whitespace off the title - if (obj.title) obj.title = obj.title.trim() - - return obj -} - -// Public: Reload current page with pjax. -// -// Returns whatever $.pjax returns. -pjax.reload = function(container, options) { - console.log('pjax reload'); - var defaults = { - url: window.location.href, - push: false, - replace: true, - scrollTo: false - }; - - return $.pjax($.extend(defaults, optionsFor(container, options))); -}; - - -pjax.defaults = { - timeout: 650, - push: true, - replace: false, - type: 'GET', - dataType: 'html', - scrollTo: 0, - maxCacheLength: 20 -}; - -// Internal: History DOM caching class. -var cacheMapping = {}; -var cacheForwardStack = []; -var cacheBackStack = []; -// Push previous state id and container contents into the history -// cache. Should be called in conjunction with `pushState` to save the -// previous container contents. -// -// id - State ID Number -// value - DOM Element to cache -// -// Returns nothing. -function cachePush(id, value) { - cacheMapping[id] = value - cacheBackStack.push(id) - - // Remove all entires in forward history stack after pushing - // a new page. - while (cacheForwardStack.length) - delete cacheMapping[cacheForwardStack.shift()]; - - // Trim back history stack to max cache length. - while (cacheBackStack.length > pjax.defaults.maxCacheLength) - delete cacheMapping[cacheBackStack.shift()]; -} -// Shifts cache from directional history cache. Should be -// called on `popstate` with the previous state id and container -// contents. -// -// direction - "forward" or "back" String -// id - State ID Number -// value - DOM Element to cache -// -// Returns nothing. -function cachePop(direction, id, value) { - var pushStack, popStack; - cacheMapping[id] = value; - - if (direction === 'forward') { - pushStack = cacheBackStack; - popStack = cacheForwardStack; - } else { - pushStack = cacheForwardStack; - popStack = cacheBackStack; - } - - pushStack.push(id); - if (id = popStack.pop()) - delete cacheMapping[id]; -} - - -// Export $.pjax.click -pjax.click = handleClick; - - -// popstate handler takes care of the back and forward buttons -// -// You probably shouldn't use pjax on pages with other pushState -// stuff yet. -$(window).bind('popstate', function(event){ - console.log('popstate args ', arguments); - var state = event.state; - - if (state && state.container) { - var container = $(state.container); - if (container.length) { - var contents = cacheMapping[state.id]; - - if (pjax.state) { - // Since state ids always increase, we can deduce the history - // direction from the previous state. - var direction = pjax.options.direction = pjax.state.id < state.id ? 'forward' : 'back'; - - // Cache current container before replacement and inform the - // cache which direction the history shifted. - cachePop(direction, pjax.state.id, container.clone().contents()); - } - - var popstateEvent = $.Event('pjax:popstate', { - state: state, - direction: direction - }); - container.trigger(popstateEvent); - - var options = { - id: state.id, - url: state.url, - container: container, - push: false, - fragment: state.fragment, - timeout: state.timeout, - scrollTo: false, - direction: direction, - duration: state.duration - }; - - if (contents) { - console.log(state); - // pjax event is deprecated - $(document).trigger('pjax', [null, options]); - container.trigger('pjax:start', [null, options]); - - setTimeout(function() { - if (state.title) document.title = state.title; - container.html(contents); - pjax.state = state; - - container.trigger('pjax:end', [null, options]); - container[0].offsetHeight; - }, state.duration || 0); - } else { - $.pjax(options); - } - - // Force reflow/relayout before the browser tries to restore the - // scroll position. - container[0].offsetHeight; - } else { - window.location = location.href; - } - } -}); - - -// Is pjax supported by this browser? -$.support = {}; -$.support.pjax = - window.history && window.history.pushState && window.history.replaceState - // pushState isn't reliable on iOS until 5. - && !navigator.userAgent.match(/((iPod|iPhone|iPad).+\bOS\s+[1-4]|WebApps\/.+CFNetwork)/); - -// Fall back to normalcy for older browsers. -if ( !$.support.pjax ) { - $.pjax = function( options ) { - var url = $.isFunction(options.url) ? options.url() : options.url, - method = options.type ? options.type.toUpperCase() : 'GET'; - - var form = $('<form>', { - method: method === 'GET' ? 'GET' : 'POST', - action: url, - style: 'display:none' - }); - - if (method !== 'GET' && method !== 'POST') { - form.append($('<input>', { - type: 'hidden', - name: '_method', - value: method.toLowerCase() - })); - } - - var data = options.data; - if (typeof data === 'string') { - $.each(data.split('&'), function(index, value) { - var pair = value.split('='); - form.append($('<input>', {type: 'hidden', name: pair[0], value: pair[1]})); - }); - } else if (typeof data === 'object') { - for (key in data) - form.append($('<input>', {type: 'hidden', name: key, value: data[key]})); - } - - $(document.body).append(form); - form.submit(); - }; - - $.pjax.click = $.noop; - $.pjax.reload = window.location.reload; - $.fn.pjax = function() { return this; } -} - -})(Zepto || jQuery); diff --git a/fixtures/default-template-app/source/javascripts/app.js b/fixtures/default-template-app/source/javascripts/app.js deleted file mode 100644 index ef3f267..0000000 --- a/fixtures/default-template-app/source/javascripts/app.js +++ /dev/null @@ -1,11 +0,0 @@ -/* -=require vendor/zepto -=require foundation/foundation -=require foundation/foundation.section -=require foundation/foundation.tooltips -=require foundation/foundation.topbar -=require _zepto.pjax -*/ - -$(document).foundation(); -$(document).pjax('a', '#container', { fragment: '#container' }); \ No newline at end of file diff --git a/fixtures/default-template-app/source/javascripts/modernizr.js b/fixtures/default-template-app/source/javascripts/modernizr.js deleted file mode 100644 index d4ec734..0000000 --- a/fixtures/default-template-app/source/javascripts/modernizr.js +++ /dev/null @@ -1 +0,0 @@ -//= require "vendor/custom.modernizr" diff --git a/fixtures/default-template-app/source/layouts/layout.erb b/fixtures/default-template-app/source/layouts/layout.erb deleted file mode 100755 index 19d7f9a..0000000 --- a/fixtures/default-template-app/source/layouts/layout.erb +++ /dev/null @@ -1,62 +0,0 @@ -<!DOCTYPE html> -<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> -<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> -<head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <title><%= page_title %> - <%= javascript_include_tag :modernizr %> - <%= stylesheet_link_tag :app %> - - -
- -
- -
-
-
-
-

<%= blog_name %> by <%= blog_author %>

-
-
-
- -
- <% if is_blog_article? %> -
-
- -

- <%= current_article.title %> -

- -
- <%= yield %> -
-
-
- <% else %> - <%= yield %> - <% end %> -
- - <%= javascript_include_tag :app %> - - \ No newline at end of file diff --git a/fixtures/default-template-app/source/stylesheets/app.css.scss b/fixtures/default-template-app/source/stylesheets/app.css.scss deleted file mode 100644 index 7e41d6f..0000000 --- a/fixtures/default-template-app/source/stylesheets/app.css.scss +++ /dev/null @@ -1,109 +0,0 @@ -@import "normalize"; -@import url(http://fonts.googleapis.com/css?family=Lato:400,700,900,400italic,700italic); - -// Make sure the charset is set appropriately -@charset "UTF-8"; - -// This includes all of the foundation global elements that are needed to work with any of the other files. -@import "foundation/variables"; - -$topbar-bg: #262626; -$topbar-height: 35px; -$topbar-margin-bottom: 0; -$topbar-breakpoint: emCalc(767px); - -$topbar-title-font-size: emCalc(12px); -$topbar-link-color: #999999; -$topbar-link-font-size: emCalc(12px); - -$body-font-color: #444; -$body-font-family: "Lato", sans-serif; - -$row-width: emCalc(768px); - -// Foundation Components -@import - "foundation/components/global", - "foundation/components/grid", - "foundation/components/visibility", - "foundation/components/block-grid", - "foundation/components/type", - "foundation/components/buttons", - "foundation/components/forms", - "foundation/components/custom-forms", - "foundation/components/button-groups", - "foundation/components/dropdown-buttons", - "foundation/components/split-buttons", - "foundation/components/flex-video", - "foundation/components/section", - "foundation/components/top-bar", - "foundation/components/orbit", - "foundation/components/reveal", - "foundation/components/joyride", - "foundation/components/clearing", - "foundation/components/alert-boxes", - "foundation/components/breadcrumbs", - "foundation/components/keystrokes", - "foundation/components/labels", - "foundation/components/inline-lists", - "foundation/components/pagination", - "foundation/components/panels", - "foundation/components/pricing-tables", - "foundation/components/progress-bars", - "foundation/components/side-nav", - "foundation/components/sub-nav", - "foundation/components/switch", - "foundation/components/magellan", - "foundation/components/tables", - "foundation/components/thumbs", - "foundation/components/tooltips", - "foundation/components/dropdown"; - -body { -} - -nav { - -webkit-font-smoothing: antialiased; -} - -header { - background: #333333; - - .row { - padding: emCalc(15px) 0; - @media #{$small} { - padding: emCalc(55px) 0; - } - } - - .bar { - border-top: 2px solid white; - height: 0; - overflow: hidden; - margin-bottom: emCalc(10px); - } - - h1 { - text-align: center; - font-size: emCalc(40px); - @media #{$small} { - font-size: emCalc(60px); - } - line-height: 1em; - font-weight: 900; - color: white; - text-transform: uppercase; - margin: 0 0 10px 0; - -webkit-font-smoothing: antialiased; - - small { - display: block; - margin-top: 10px; - font-size: 14px; - font-weight: 700; - font-style: italic; - color: white; - text-transform: none; - } - } -}