中间人博客gem根据lib/middleman-blog/commands/article.tt
创建新文章当前格式为;
---
title: <%= @title %>
date: <%= @date.strftime('%F %R %Z') %>
tags:
---
如果我希望默认的前端内容是其他类似的东西,那么覆盖它的最佳方法是什么;
---
layout: blog
author: Dave
---
(除了打开宝石并在那里更换宝石。)
答案 0 :(得分:1)
通过将blog.new_article_template
添加到config.rb
中的博客设置(如此
activate :blog do |blog|
blog.prefix = 'blog'
blog.new_article_template = 'source/blog/template.erb'
end
答案 1 :(得分:0)
没有内置的方式来覆盖它。
但是你可能会发现在Middleman Blog代码中调用该文件的位置并从config.rb
覆盖该方法,并将其指向不同的模板文件。