middleman / middleman-blog

Blog Engine Extension for Middleman
https://middlemanapp.com
MIT License
325 stars 179 forks source link

Very poor and outdated blog template which does not match with default template #370

Closed vifreefly closed 5 years ago

vifreefly commented 5 years ago

Here how looks like default (not blog) generated middleman template ($ middleman init my_new_project):

.
├── source
│   ├── images
│   ├── javascripts
│   │   └── site.js
│   ├── layouts
│   │   └── layout.erb
│   ├── stylesheets
│   │   └── site.css.scss
│   └── index.html.erb
├── config.rb
├── Gemfile
└── Gemfile.lock

In contrast, here how looks like a blog template ($ middleman init my_new_blog_project --template=blog):

.
├── source
│   ├── 2012-01-01-example-article.html.markdown
│   ├── calendar.html.erb
│   ├── feed.xml.builder
│   ├── index.html.erb
│   ├── layout.erb
│   └── tag.html.erb
├── config.rb
├── Gemfile
└── Gemfile.lock

It looks poor and outdated. LATEST COMMIT WAS 3 YEARS AGO https://github.com/middleman/middleman-templates-blog . I personally spend a lot of time trying to realize why my generated template is different than in official docs https://middlemanapp.com/basics/directory-structure/ .

I can create a PR to update a blog template, if Middleman maintainers would like to merge it. Thanks.

Additional information

iwarner commented 5 years ago

Yes please push a PR to the core repo thanks.

tdreyno commented 5 years ago

To this repo: https://github.com/middleman/middleman-templates-blog

a2ikm commented 4 years ago

https://github.com/middleman/middleman-templates-blog/pull/6 seems to fix this issue 🤔

tdreyno commented 4 years ago

@a2ikm Thanks. Merged.