Use the popular Ruby Sinatra (Rails-like) Tool chain to build static websites. Build your source files in Markdown, HAML, Textile (or many others), and take advantage of SASS with Compass for styling. Add Javascript, CoffeeScript and Sockets. View the sites locally with the built-in server mode ...

learn more… | top users | synonyms

0
votes
1answer
16 views

Include Page Specific Styles in Middleman

I have a layout in the current version of Middleman (3.0.14). I would like to pulling page specific stylesheets or script if they exist. In the layout I currently have: <%= stylesheet_link_tag ...
0
votes
1answer
14 views

what to set in Capybara.app for a Middleman project?

In the env.rb to use Capybara you should setup Capybara.app = something Middleman is based on sinatra so I was thinking to use Sinatra::Application but gives an error Anyone know what should be put ...
0
votes
1answer
47 views

Middleman blogging

I'm using the awesome Middleman to create my blog. Everything works fine when working in development server: not a single error, everything is clean. When I run bundle exec middleman build though, I ...
0
votes
1answer
114 views

How do I display erb code inside haml img src?

<% data.programs.client_name.each_with_index do |c, i| %> %article .content %header .logo-wrap %img.client-logo{:src => "<%= ...
0
votes
1answer
121 views

Why does `middleman serve` work, but `middleman build` fails to compile this Sass?

When I just run middleman to serve, all.css gets compiled fine, consisting of just a call to +box-shadow(none): /* line 1, /home/yang/asdf/source/stylesheets/content.css.sass */ div { ...
0
votes
1answer
58 views

Accessing multi-layered YAML and Middleman

After taking a look at these two links, using YAML with Middleman has become a lot more clear: Middleman Docs(Local Data), parsing and composing YAML The issue that I'm running into now is accessing ...
0
votes
0answers
118 views

Middleman Slim template - is there a way to pass variables into YAML front matter?

I'm using Middleman and Slim templates. I am proxying data to create multiple pages automatically. I need to set YAML front matter with variables and I don't know how to do that! Does anyone know? ...
1
vote
2answers
370 views

Sass/Compass not compiling using Guard with Middleman setup

I'm running Mac OS X Mountain Lion and recntly setup Ruby via RVM. I then installed Middleman (http://middlemanapp.com/) which works fine. I've been able to add configuration settings and do a build ...
1
vote
1answer
86 views

How much of a factor is slug size on heroku

Planning to make a site with static html content, I explored alternatives to using Rails on Heroku since I didn't need a database or any of the other features offered by Rails. I heard Middleman ...
0
votes
1answer
233 views

How to install and use Slim template engine with Middleman

I'm new to Middleman and ruby in general. I've installed Ruby I've installed Middleman and the gems to get it running. I need to use slim instead of the default template system. So I installed the ...
0
votes
3answers
195 views

Text alignment not working properly. only in Chrome [closed]

Question: Fonts doesn't align very well only on Chrome with Windows 8 as it's OS. CHROME RENDER This happens only in chrome, it's not aligned everything and is out of place. Tried break-word css ...
0
votes
1answer
57 views

Middleman gives 404 in Article Page

I'm getting started building out a blog with Middleman using the middleman-blog extension. Everything is working great so far on the home page. The problem occurs when I click on a link to see the ...
0
votes
1answer
85 views

Middleman JSON local data

I am pretty new to Middleman and Ruby so I apology in advance... I'm trying to read via "Middleman local data" some JSON files I have in my data folder and then save the result into a environment ...
0
votes
1answer
98 views

Middleman server not compiling coffeescript

I've used Middleman in the past to work on static projects, and have used CoffeeScript in those projects. In this instance it does not seem to be working. I was under the impression that CoffeeScript ...
0
votes
1answer
152 views

Middleman parent, siblings, children methods

When creating pages in middleman, how do I indicate which pages are parents/siblings/children? The documentation gives some indication how you can use parent siblings and children methods to build ...
1
vote
0answers
102 views

gems with middleman

I'm trying to learn Middleman to create a static site hopefully similar to the CMS that RailsCasts builds in this very clever tree-based navigation episode ...
0
votes
1answer
60 views

Middleman installed but binary cannot be found

I just installed Middleman on my Mac (OS 10.8.2) but am unable to generate a new project. I have Xcode installed. Can anyone tell me what I might have done wrong? $ middleman init moi -bash: ...
0
votes
1answer
84 views

Middleman dynamic page / url rewrite with wildcard

I can't seem to figure out how to rewrite URLs to create dynamic pages with Middleman (3.0.12). Here's my attempt: activate :directory_indexes # not found page "list/*", :proxy => "index.html" # ...
0
votes
0answers
17 views

Middleman processing README file into a directory

I'm having trouble setting up a readme file for my Middleman static website. I've added both a README and a CNAME file for when the static content is deployed to Github. The CNAME file is copied ...
0
votes
0answers
42 views

Setting color codes on middleman but is being read as a Comment or String. [closed]

I have this code On my layout.haml :css .caption { background-color: @title_color; } and on my /source/pages/index.html.haml I have, - @title_color = #000 But the output is ...
0
votes
1answer
101 views

iterating over yaml data in middleman template

I have a list of projects in a yaml file which i'd like to dynamically loop thru for a template in a middleman app but am unsure how or if I even can/should do it more dynamically. I have: ...
1
vote
0answers
111 views

Animation Compass Plugin not working in Middleman?

Hi I have a problem adding animation plugin in middleman and yes I'm pretty sure I installed animation plugin for compass and I see it on my gem lists. if I add this on my config.rb require ...
1
vote
1answer
121 views

using middleman framework, can;t make this code work on my project. (generating navigation)

Hi guys, I can't seem to make this code work on my project. This is the code in my config.rb active_nav = {:class => "Active"} // Changed it to nav_active hoping it would work but it didn't. ...
0
votes
1answer
79 views

Middleman not parsing source file up template chain if missing ERb tags

I'm converting a Jekyll site to Middleman. I have named my files like filename.html.md.liquid.erb for processing with those libraries in that order: ERb, then liquid, then kramdown. What I found is ...
0
votes
1answer
96 views

Howto create dynamic pages with middleman 3.0.9

I'm fiddling with middleman 3.0.9 for some time now, trying to create some dynamic output that I need. Older versions had the "dynamic pages" feature. 3.0.9 does not seem to have something similar. ...
0
votes
1answer
241 views

Pass dynamic content to template in Middleman

I'm building a static site using Middleman that has a portfolio section of all the client's recent projects. The portfolio section will display project thumbnail images in a 3 X 3 gallery fashion and, ...
1
vote
2answers
254 views

Middleman & Haml with Github-style fenced code blocks

I'm starting using Middleman for static web pages & blogging purposes. I'm using it with a ZURB Fondation based template, Middleman-Foundation. It employs Haml, and I'm indeed inclined to use ...
0
votes
1answer
134 views

middleman 3.0.11 do not know template=html5-haml

I'm following getting started on main website. And I copy-paste: middleman init my_new_mobile_project --template=html5-haml Unknown project template 'html5-haml' middleman init ...
1
vote
1answer
128 views

Undefined method MiddlemanCore Data

I'm working on a static site using middleman and am trying to use mm's local data functionality. Currently I have the required data directory within the source directory of my middleman project. ...
0
votes
1answer
139 views

Use Sinatra/Rack (in MiddlemanApp) to serve PHP files as static text/html?

I'm fairly new to Ruby/Sinatra/Rack. Been using MiddlemanApp for a couple months. I have a need for a couple of PHP pages in my middleman static site. And I'd like to be able to preview those pages ...
0
votes
0answers
88 views

The LiveReload extension for Middleman is reloading the entire page instead of just the CSS.

When I use the LiveReload mac's app it works as it's supposed to. So it's not really a problem but can't help but think I'm missing something obvious. Does anyone know why this is happening or how ...
-1
votes
1answer
75 views

Local variable is nil, when it clearly shouldn't be (assigned to an expression with itself)

Why does this little code snippet (for a navigational helper with css classes) give me an undefined method 'include?' for nil:NilClass on the elseif-line? The page_classes_string may be something ...
2
votes
2answers
137 views

parsing and composing YAML

I have a basic question which I can't seem to sort out. I would like to store a small set of Quote in a YAML file and then iterate thru it in a website using Ruby Middlemanapp. I'm not sure if it's ...
1
vote
1answer
88 views

Website Search with no database

I am currently about to build a website for a client. For static content I am going to use middleman. The website consists of a series of categories and inside each there are several products with ...
0
votes
0answers
43 views

UTF-8 Encoding not working on Heroku with Static Build

I'm using a static site generator (Middleman) to build my site. I'm using a buildpack with Heroku so that the site gets built and then hosted as a static site with some rack middleware when I push my ...
0
votes
3answers
184 views

Moving blog articles location in Middleman

I'm using the Middleman Blog gem for my site, but by default it appears the blog articles need to be located in /source which isn't particularly nice when looking at the tree in vim and trying to ...
1
vote
0answers
160 views

Possible to create a conditional loop in Sass/Compass (with Middleman) based upon availability of (SVG) images?

Is it possible to create a conditional loop in Sass/Compass (with Middleman) based upon availability of (SVG) images? I have upto 150 images (svg), each will be used as a background to a navigation ...
0
votes
1answer
129 views

How Do I Use Localization (i18n) with Haml in Middleman

The examples on Middleman's web page are in ERB, but I like to use HAML. http://middlemanapp.com/advanced/localization/ This is their example localization YAML file: --- es: hello: "Hola" And ...
0
votes
1answer
139 views

ruby / middleman noob, path issue when starting middleman on branch

I have a middleman server running fine on the trunk part of my repository. when I try to start middleman on a branch, I get the following error: Guard is now watching at ...
0
votes
1answer
419 views

How to use content_for & yield_content in middleman using slim

I've tried prepending content_for with =, == or - without luck :) index.slim - content_for(:senarios) do h1 Some content layout.slim == yield_content(:senarios) Hope somebody got a ...
2
votes
4answers
227 views

How to know in what environment the code runs?

In the layout file of haml I would like to determine whether we are in our development and build environments. We're using Middleman. I would like to do something like this: - if environment == ...
0
votes
1answer
88 views

Requiring a file from a required file in Sprockets

I would like to require a javascript file that itself requires other javascript files: In main.js //= require plugins ... Shared Code In plugins.js //= require vendor/handlebars-1.0.rc.1.js //= ...
0
votes
1answer
71 views

Middleman :relative_assets compatibility with :directory_indexes

I'm having some issues with Middleman 3.0 that I'm confused by. I am building my site with activate :relative_assets and activate :directory_indexes, the builder doesn't realize that the file is ...
0
votes
0answers
69 views

How to Support Embedded Ruby in Middleman-generated Static Pages

I have a static site generated using the excellent Middleman. It has been running happily on an Apache server. I now need to add some embedded Ruby to one of the pages (Ruby that must be evaluated at ...
3
votes
2answers
402 views

Include Require.JS (r.js build) into the Middleman build

I work with Middleman to develop, test and build my HAML & SASS Projects. Now I also like to work with require.js. Is there any way i could integrate the R.js build into the Middleman build? ...
0
votes
2answers
125 views

Nested methods in Ruby Helper

I'm working on a project in MiddleMan. Trying to pass the results of a method as the parameters of another method. I'm running into all kinds of syntax issues with the commas and parens. Everything ...
0
votes
1answer
304 views

Extending Middleman to handle a new filetype (.JADE)

I'd like to add .jade support to Middleman. I don't need to use any of jade's dynamic features, but I'd like to compile my app in middleman rather than with my own messy compile script. What is the ...
0
votes
0answers
87 views

Middleman build - include coffee & less

Is it possible to build using middleman, while including the coffee and less files? I want them to be in the build/ directory as well as the compiled ones.
1
vote
1answer
740 views

Using MIddleman 3.0 - How do I set individual page titles on dynamic pages?

I'm putting together a simple portfolio site in middleman. I'm generate the 'work' pages dynamically based on local YAML data. This is in the config.rb: data.work.projects.each do |project| page ...
2
votes
2answers
187 views

Middleman sprockets fingerprint

I'm using middleman with sprockets for packaging my js and css files into one file. This works fine. But I was wondering if it is possible to enable the fingerprint feature from sprockets in ...

1 2