Skip to content

Commit

Permalink
Remove Sass dependency. Fix blog title.
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jan 16, 2016
1 parent 47e55c0 commit f454c9f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 13 deletions.
1 change: 0 additions & 1 deletion Gemfile
Expand Up @@ -5,7 +5,6 @@ gem 'middleman-livereload', '~> 3.1'
gem 'middleman-blog', '~> 3.5'
gem 'middleman-syntax', '~> 2.0'
gem 'middleman-deploy', '~> 1.0'
gem 'bootstrap-sass', '~> 3.3', require: false
gem 'middleman-search_engine_sitemap', '~> 1.3'
gem 'redcarpet', '~> 3.2'
gem 'httparty'
9 changes: 1 addition & 8 deletions Gemfile.lock
Expand Up @@ -8,12 +8,6 @@ GEM
thread_safe (~> 0.1)
tzinfo (~> 1.1)
addressable (2.3.7)
autoprefixer-rails (5.1.5)
execjs
json
bootstrap-sass (3.3.3)
autoprefixer-rails (>= 5.0.0.1)
sass (>= 3.2.19)
builder (3.2.2)
celluloid (0.16.0)
timers (~> 4.0.0)
Expand Down Expand Up @@ -154,7 +148,6 @@ PLATFORMS
ruby

DEPENDENCIES
bootstrap-sass (~> 3.3)
httparty
middleman (~> 3.3)
middleman-blog (~> 3.5)
Expand All @@ -165,4 +158,4 @@ DEPENDENCIES
redcarpet (~> 3.2)

BUNDLED WITH
1.10.4
1.11.2
3 changes: 0 additions & 3 deletions config.rb
@@ -1,7 +1,5 @@
require 'rack/utils'
require 'middleman-syntax'
require 'bootstrap-sass'
require 'compass/import-once/activate'

###
# Compass
Expand All @@ -11,7 +9,6 @@
config.output_style = :compact
config.http_path = '/'
config.css_dir = 'source/stylesheets'
config.sass_dir = 'source/sass'
config.images_dir = 'source/images'
config.javascripts_dir = 'source/javascripts'
end
Expand Down
2 changes: 1 addition & 1 deletion source/layouts/blog.erb
Expand Up @@ -8,7 +8,7 @@
<meta name="author" content="Luca Guidi">
<link href="http://feeds.feedburner.com/hanamirb" rel="alternate" title="Hanami" type="application/atom+xml" />

<title><%= current_page.data.title || "Hanami | The web, with simplicity." %></title>
<title>Hanami | <%= current_page.data.title || "Hanami | The web, with simplicity." %></title>

<link href="http://fonts.googleapis.com/css?family=Roboto:100,300,400,700" rel="stylesheet">
<%= stylesheet_link_tag 'toolkit-minimal' %>
Expand Down

0 comments on commit f454c9f

Please sign in to comment.