├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── VERSION.yml ├── bin └── staticmatic ├── lib ├── staticmatic.rb └── staticmatic │ ├── ambiguous_template_error.rb │ ├── base.rb │ ├── compass.rb │ ├── compass │ ├── app_integration.rb │ ├── configuration_defaults.rb │ └── installer.rb │ ├── configuration.rb │ ├── deployers │ ├── aws-s3.rb │ └── config │ │ └── amazon.yml │ ├── error.rb │ ├── helpers.rb │ ├── helpers │ ├── assets_helper.rb │ ├── current_path_helper.rb │ ├── form_helper.rb │ ├── render_helper.rb │ ├── tag_helper.rb │ └── url_helper.rb │ ├── mixins │ ├── build.rb │ ├── helpers.rb │ ├── render.rb │ ├── rescue.rb │ ├── server.rb │ └── setup.rb │ ├── server.rb │ ├── template_error.rb │ └── templates │ └── rescues │ ├── default.haml │ └── template.haml ├── spec ├── base_spec.rb ├── compass_integration_spec.rb ├── helpers │ ├── asset_helper_spec.rb │ └── custom_helper_spec.rb ├── render_spec.rb ├── rescue_spec.rb ├── sandbox │ └── test_site │ │ ├── config │ │ ├── compass.rb │ │ └── site.rb │ │ ├── site │ │ ├── index │ │ ├── layout_test │ │ └── sub_folder │ │ │ ├── another_sub_folder │ │ │ ├── index.html │ │ │ └── index.html.html │ │ │ └── index.html │ │ └── src │ │ ├── _helpers │ │ └── application_helper.rb │ │ ├── _layouts │ │ ├── alternate_layout.haml │ │ ├── default.haml │ │ └── projects.haml │ │ ├── _partials │ │ ├── menu.haml │ │ └── partial_with_error.haml │ │ ├── hello_world.erb │ │ ├── index.haml │ │ ├── layout_test.haml │ │ ├── page_one.haml │ │ ├── page_two.haml │ │ ├── page_with_error.haml │ │ ├── page_with_partial_error.haml │ │ └── stylesheets │ │ ├── application.sass │ │ ├── css_with_error.sass │ │ ├── nested │ │ └── a_nested_stylesheet.sass │ │ ├── partials │ │ └── _forms.sass │ │ └── sassy.scss ├── server_spec.rb ├── spec_helper.rb └── template_error_spec.rb ├── staticmatic.gemspec ├── staticmatic2.gemspec └── website ├── Gemfile ├── config └── site.rb ├── site ├── docs │ ├── compass_integration.html │ ├── getting_started.html │ └── helpers.html ├── images │ ├── bycurve21.gif │ ├── curve21.jpg │ ├── homepage-build.jpg │ ├── homepage-previewing.jpg │ └── homepage-templating.jpg └── stylesheets │ ├── ie.css │ ├── print.css │ └── screen.css └── src ├── helpers └── content_helper.rb ├── layouts └── default.haml ├── pages ├── development.haml ├── docs │ ├── _menu.haml │ ├── _requires_prerelease.haml │ ├── compass_integration.haml │ ├── getting_started.haml │ └── helpers.haml └── index.haml └── stylesheets ├── _base.scss ├── _defaults.scss ├── ie.scss ├── print.scss └── screen.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/VERSION.yml -------------------------------------------------------------------------------- /bin/staticmatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/bin/staticmatic -------------------------------------------------------------------------------- /lib/staticmatic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic.rb -------------------------------------------------------------------------------- /lib/staticmatic/ambiguous_template_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/ambiguous_template_error.rb -------------------------------------------------------------------------------- /lib/staticmatic/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/base.rb -------------------------------------------------------------------------------- /lib/staticmatic/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/compass.rb -------------------------------------------------------------------------------- /lib/staticmatic/compass/app_integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/compass/app_integration.rb -------------------------------------------------------------------------------- /lib/staticmatic/compass/configuration_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/compass/configuration_defaults.rb -------------------------------------------------------------------------------- /lib/staticmatic/compass/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/compass/installer.rb -------------------------------------------------------------------------------- /lib/staticmatic/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/configuration.rb -------------------------------------------------------------------------------- /lib/staticmatic/deployers/aws-s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/deployers/aws-s3.rb -------------------------------------------------------------------------------- /lib/staticmatic/deployers/config/amazon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/deployers/config/amazon.yml -------------------------------------------------------------------------------- /lib/staticmatic/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/error.rb -------------------------------------------------------------------------------- /lib/staticmatic/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/helpers.rb -------------------------------------------------------------------------------- /lib/staticmatic/helpers/assets_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/helpers/assets_helper.rb -------------------------------------------------------------------------------- /lib/staticmatic/helpers/current_path_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/helpers/current_path_helper.rb -------------------------------------------------------------------------------- /lib/staticmatic/helpers/form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/helpers/form_helper.rb -------------------------------------------------------------------------------- /lib/staticmatic/helpers/render_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/helpers/render_helper.rb -------------------------------------------------------------------------------- /lib/staticmatic/helpers/tag_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/helpers/tag_helper.rb -------------------------------------------------------------------------------- /lib/staticmatic/helpers/url_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/helpers/url_helper.rb -------------------------------------------------------------------------------- /lib/staticmatic/mixins/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/mixins/build.rb -------------------------------------------------------------------------------- /lib/staticmatic/mixins/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/mixins/helpers.rb -------------------------------------------------------------------------------- /lib/staticmatic/mixins/render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/mixins/render.rb -------------------------------------------------------------------------------- /lib/staticmatic/mixins/rescue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/mixins/rescue.rb -------------------------------------------------------------------------------- /lib/staticmatic/mixins/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/mixins/server.rb -------------------------------------------------------------------------------- /lib/staticmatic/mixins/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/mixins/setup.rb -------------------------------------------------------------------------------- /lib/staticmatic/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/server.rb -------------------------------------------------------------------------------- /lib/staticmatic/template_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/template_error.rb -------------------------------------------------------------------------------- /lib/staticmatic/templates/rescues/default.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/templates/rescues/default.haml -------------------------------------------------------------------------------- /lib/staticmatic/templates/rescues/template.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/lib/staticmatic/templates/rescues/template.haml -------------------------------------------------------------------------------- /spec/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/base_spec.rb -------------------------------------------------------------------------------- /spec/compass_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/compass_integration_spec.rb -------------------------------------------------------------------------------- /spec/helpers/asset_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/helpers/asset_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/custom_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/helpers/custom_helper_spec.rb -------------------------------------------------------------------------------- /spec/render_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/render_spec.rb -------------------------------------------------------------------------------- /spec/rescue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/rescue_spec.rb -------------------------------------------------------------------------------- /spec/sandbox/test_site/config/compass.rb: -------------------------------------------------------------------------------- 1 | http_path = "http://a.test.host" -------------------------------------------------------------------------------- /spec/sandbox/test_site/config/site.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/sandbox/test_site/site/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/site/index -------------------------------------------------------------------------------- /spec/sandbox/test_site/site/layout_test: -------------------------------------------------------------------------------- 1 |
This is a layout test
2 | -------------------------------------------------------------------------------- /spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html: -------------------------------------------------------------------------------- 1 | Sub sub folder test 2 | -------------------------------------------------------------------------------- /spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html.html: -------------------------------------------------------------------------------- 1 | Sub sub folder test 2 | -------------------------------------------------------------------------------- /spec/sandbox/test_site/site/sub_folder/index.html: -------------------------------------------------------------------------------- 1 | An index of a sub folder 2 | -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/_helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/_helpers/application_helper.rb -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/_layouts/alternate_layout.haml: -------------------------------------------------------------------------------- 1 | %h1 Alternate Layout 2 | 3 | = yield -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/_layouts/default.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/_layouts/default.haml -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/_layouts/projects.haml: -------------------------------------------------------------------------------- 1 | %h1 Sub dir test -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/_partials/menu.haml: -------------------------------------------------------------------------------- 1 | My Menu -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/_partials/partial_with_error.haml: -------------------------------------------------------------------------------- 1 | - bang! -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/hello_world.erb: -------------------------------------------------------------------------------- 1 | <%= "Hello World!" %> -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/index.haml -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/layout_test.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/layout_test.haml -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/page_one.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/page_one.haml -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/page_two.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/page_two.haml -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/page_with_error.haml: -------------------------------------------------------------------------------- 1 | %h1 Hello 2 | 3 | - bang! 4 | 5 | %h2 A test -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/page_with_partial_error.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/page_with_partial_error.haml -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/stylesheets/application.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/stylesheets/application.sass -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/stylesheets/css_with_error.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/stylesheets/css_with_error.sass -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/stylesheets/nested/a_nested_stylesheet.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/stylesheets/partials/_forms.sass: -------------------------------------------------------------------------------- 1 | input 2 | font-size: 12pt -------------------------------------------------------------------------------- /spec/sandbox/test_site/src/stylesheets/sassy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/sandbox/test_site/src/stylesheets/sassy.scss -------------------------------------------------------------------------------- /spec/server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/server_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/template_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/spec/template_error_spec.rb -------------------------------------------------------------------------------- /staticmatic.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/staticmatic.gemspec -------------------------------------------------------------------------------- /staticmatic2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/staticmatic2.gemspec -------------------------------------------------------------------------------- /website/Gemfile: -------------------------------------------------------------------------------- 1 | gem -------------------------------------------------------------------------------- /website/config/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/config/site.rb -------------------------------------------------------------------------------- /website/site/docs/compass_integration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/docs/compass_integration.html -------------------------------------------------------------------------------- /website/site/docs/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/docs/getting_started.html -------------------------------------------------------------------------------- /website/site/docs/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/docs/helpers.html -------------------------------------------------------------------------------- /website/site/images/bycurve21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/images/bycurve21.gif -------------------------------------------------------------------------------- /website/site/images/curve21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/images/curve21.jpg -------------------------------------------------------------------------------- /website/site/images/homepage-build.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/images/homepage-build.jpg -------------------------------------------------------------------------------- /website/site/images/homepage-previewing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/images/homepage-previewing.jpg -------------------------------------------------------------------------------- /website/site/images/homepage-templating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/images/homepage-templating.jpg -------------------------------------------------------------------------------- /website/site/stylesheets/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/stylesheets/ie.css -------------------------------------------------------------------------------- /website/site/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/stylesheets/print.css -------------------------------------------------------------------------------- /website/site/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/site/stylesheets/screen.css -------------------------------------------------------------------------------- /website/src/helpers/content_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/helpers/content_helper.rb -------------------------------------------------------------------------------- /website/src/layouts/default.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/layouts/default.haml -------------------------------------------------------------------------------- /website/src/pages/development.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/pages/development.haml -------------------------------------------------------------------------------- /website/src/pages/docs/_menu.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/pages/docs/_menu.haml -------------------------------------------------------------------------------- /website/src/pages/docs/_requires_prerelease.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/pages/docs/_requires_prerelease.haml -------------------------------------------------------------------------------- /website/src/pages/docs/compass_integration.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/pages/docs/compass_integration.haml -------------------------------------------------------------------------------- /website/src/pages/docs/getting_started.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/pages/docs/getting_started.haml -------------------------------------------------------------------------------- /website/src/pages/docs/helpers.haml: -------------------------------------------------------------------------------- 1 | %h1 Helpers -------------------------------------------------------------------------------- /website/src/pages/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/pages/index.haml -------------------------------------------------------------------------------- /website/src/stylesheets/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/stylesheets/_base.scss -------------------------------------------------------------------------------- /website/src/stylesheets/_defaults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/stylesheets/_defaults.scss -------------------------------------------------------------------------------- /website/src/stylesheets/ie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/stylesheets/ie.scss -------------------------------------------------------------------------------- /website/src/stylesheets/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/stylesheets/print.scss -------------------------------------------------------------------------------- /website/src/stylesheets/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbert/staticmatic2/HEAD/website/src/stylesheets/screen.scss --------------------------------------------------------------------------------