-
Inside `config.rb`, I have:
``` ruby
blog.custom_collections = {
category: {
link: '/categories/{category}.html',
template: 'layouts/category/main.html'
}
}
```
Doesn't work.…
-
Under building blog errors are displayed as below
```
[user@host blog-test]$ bundle exec middleman build
== Executing: `./node_modules/webpack/bin/webpack.js -p --bail`
== External: Hash: 84770d72249…
-
I'm getting the following error after
``` shell
$ gem install middleman
$ middleman init
# ...
```
Then I add `middleman-blog`:
``` ruby
source 'https://rubygems.org'
gem 'middleman', '>= 4.0.0'
g…
-
It seems that this extension is not supported in Middleman v4. Does anyone know how we could fix that?
```
== The Middleman is loading
/Users/Renato/.rvm/gems/ruby-2.2.2/gems/middleman-core-4.0.0.bet…
-
@marnen Is it possible to define the `:separator` in a sites config file?
-
Hi,
the blog create with the newest blog-drops template under build process warning is displayed - details below
```
[user@host]$ middleman build
WARN: Unresolved specs during Gem::Specification.rese…
-
Hi guys. Weird one, but probably something I'm missing.
Like any Middleman project, I have a header and footer partial inside my config.rb
```
```
This is working fine on first-level pag…
ghost updated
8 years ago
-
I've run into a weird bug, where using proxy more than 6 times crashes middleman.
``` ruby
# works
6.times do |i|
path = "/tb/i-#{i.to_s}.html"
proxy path, '/dyn/template.html', :ignore => true
e…
-
I just implemented the middleman-search_engine_sitemap gem to my Middleman project and it works fine locally.
However when I push my changes to Heroku, I get this build error:
```
error tmp/sitemap…
-
Hey guys,
I am trying to use Liquid as the templating language for a new Middleman site. Everything works fine except I cannot access regular Middleman helpers using the following syntax:
```
{{ cur…