├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── app.rb ├── config.rb ├── config.ru ├── config └── compass.rb ├── public ├── favicon.ico └── robots.txt ├── static └── wireframe-v1 │ ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff │ ├── images │ ├── image-lg.jpg │ ├── image-sm.jpg │ ├── image-sq.jpg │ ├── image-vid.jpg │ └── main-image.jpg │ └── javascripts │ ├── navigation.js │ └── vendor │ ├── jquery.min.js │ └── modernizr.min.js └── views └── wireframe-v1 ├── 404.html.erb ├── 422.html.erb ├── 500.html.erb ├── 503.html.erb ├── form.html.haml ├── index.html.haml ├── internal.html.haml ├── layout.haml ├── partials ├── _breadcrumbs.html.haml └── _secondary-navigation.html.haml └── stylesheets ├── contexts ├── _footer.scss ├── _header.scss ├── _homepage.scss └── _internal.scss ├── errors.scss ├── globals ├── _forms.scss └── _general.scss ├── library ├── _general-mixins.scss ├── _grid.scss ├── _icons.scss ├── _mediaqueries.scss ├── _typographic-mixins.scss └── _variables.scss ├── modules ├── _navigation.scss └── _notifications.scss └── screen.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | *.DS_Store -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/README.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/app.rb -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/config.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /config/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/config/compass.rb -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/public/robots.txt -------------------------------------------------------------------------------- /static/wireframe-v1/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/fonts/icomoon.eot -------------------------------------------------------------------------------- /static/wireframe-v1/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/fonts/icomoon.svg -------------------------------------------------------------------------------- /static/wireframe-v1/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/fonts/icomoon.ttf -------------------------------------------------------------------------------- /static/wireframe-v1/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/fonts/icomoon.woff -------------------------------------------------------------------------------- /static/wireframe-v1/images/image-lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/images/image-lg.jpg -------------------------------------------------------------------------------- /static/wireframe-v1/images/image-sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/images/image-sm.jpg -------------------------------------------------------------------------------- /static/wireframe-v1/images/image-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/images/image-sq.jpg -------------------------------------------------------------------------------- /static/wireframe-v1/images/image-vid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/images/image-vid.jpg -------------------------------------------------------------------------------- /static/wireframe-v1/images/main-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/images/main-image.jpg -------------------------------------------------------------------------------- /static/wireframe-v1/javascripts/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/javascripts/navigation.js -------------------------------------------------------------------------------- /static/wireframe-v1/javascripts/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/javascripts/vendor/jquery.min.js -------------------------------------------------------------------------------- /static/wireframe-v1/javascripts/vendor/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/static/wireframe-v1/javascripts/vendor/modernizr.min.js -------------------------------------------------------------------------------- /views/wireframe-v1/404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/404.html.erb -------------------------------------------------------------------------------- /views/wireframe-v1/422.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/422.html.erb -------------------------------------------------------------------------------- /views/wireframe-v1/500.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/500.html.erb -------------------------------------------------------------------------------- /views/wireframe-v1/503.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/503.html.erb -------------------------------------------------------------------------------- /views/wireframe-v1/form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/form.html.haml -------------------------------------------------------------------------------- /views/wireframe-v1/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/index.html.haml -------------------------------------------------------------------------------- /views/wireframe-v1/internal.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/internal.html.haml -------------------------------------------------------------------------------- /views/wireframe-v1/layout.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/layout.haml -------------------------------------------------------------------------------- /views/wireframe-v1/partials/_breadcrumbs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/partials/_breadcrumbs.html.haml -------------------------------------------------------------------------------- /views/wireframe-v1/partials/_secondary-navigation.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/partials/_secondary-navigation.html.haml -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/contexts/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/contexts/_footer.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/contexts/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/contexts/_header.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/contexts/_homepage.scss: -------------------------------------------------------------------------------- 1 | // homepage-specific styles 2 | 3 | .home { 4 | } -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/contexts/_internal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/contexts/_internal.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/errors.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/globals/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/globals/_forms.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/globals/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/globals/_general.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/library/_general-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/library/_general-mixins.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/library/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/library/_grid.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/library/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/library/_icons.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/library/_mediaqueries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/library/_mediaqueries.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/library/_typographic-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/library/_typographic-mixins.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/library/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/library/_variables.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/modules/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/modules/_navigation.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/modules/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/modules/_notifications.scss -------------------------------------------------------------------------------- /views/wireframe-v1/stylesheets/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beardedstudio/stubble/HEAD/views/wireframe-v1/stylesheets/screen.scss --------------------------------------------------------------------------------