This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AddEncoding gzip .gz | |
RewriteEngine On | |
RewriteCond %{HTTP:Accept-Encoding} gzip | |
RewriteCond %{REQUEST_FILENAME}.gz -f | |
RewriteRule ^(.*)$ $1.gz [QSA,L] | |
<Files *.css.gz> | |
ForceType text/css |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guard 'sass', :input => '_sass', :output => 'assets', :extension => ".scss.liquid", :style => :compressed, :all_on_start => true | |
guard 'sprockets', :destination => 'assets', :root_file => '_foundation/js/foundation/foundation_all.js' | |
guard 'haml', :default_ext => 'liquid', :run_at_start => true do | |
watch %r{.+(\.liquid\.haml)} | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin linksignify-superscript { | |
font-size: 0.83em; | |
line-height: 0.5em; | |
vertical-align: baseline; | |
position: relative; | |
top: -0.4em; | |
left: 0.1em; | |
} | |
// Append language abbreviation (EN, RU, PL) in superscript to a link if the language of the page is different. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/[if IE 8] <html class="no-js lt-ie9" lang="en"> | |
<!--[if gt IE 8]><!--> | |
%html.no-js{lang: "en"} | |
/<![endif] |
NewerOlder