From 175cd86976a26518ae1746856e27230edb025125 Mon Sep 17 00:00:00 2001 From: Will Marshall Date: Fri, 29 Nov 2013 16:38:14 +1100 Subject: [PATCH] Adding darkswarm basics --- app/assets/stylesheets/darkswarm/all.css | 12 ++++++++++++ app/views/layouts/darkswarm.html.haml | 10 ++++++++++ 2 files changed, 22 insertions(+) create mode 100644 app/assets/stylesheets/darkswarm/all.css create mode 100644 app/views/layouts/darkswarm.html.haml diff --git a/app/assets/stylesheets/darkswarm/all.css b/app/assets/stylesheets/darkswarm/all.css new file mode 100644 index 0000000000..d9bcccc9cc --- /dev/null +++ b/app/assets/stylesheets/darkswarm/all.css @@ -0,0 +1,12 @@ +/* + * This is a manifest file that'll automatically include all the stylesheets available in this directory + * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at + * the top of the compiled file, but it's generally better to create a new file per style scope. + + *= require_self + + * Stuff we haven't yet ported from search + + *= require ../search/foundation_and_overrides + *= require_tree . +*/ diff --git a/app/views/layouts/darkswarm.html.haml b/app/views/layouts/darkswarm.html.haml new file mode 100644 index 0000000000..348ce11d49 --- /dev/null +++ b/app/views/layouts/darkswarm.html.haml @@ -0,0 +1,10 @@ +!!! +%html + %head + %meta{charset: 'utf-8'}/ + %meta{name: 'viewport', content: "width=device-width,initial-scale=1.0"}/ + + %title= content_for?(:title) ? yield(:title) : 'Welcome to Open Food Network' + = favicon_link_tag "favicon.png" + + = stylesheet_link_tag "darkswarm/all"