Switch to unified view

a b/forgeblog/templates/blog/edit_post.html
1
{% extends g.theme.master %}
2
3
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}:
4
      {{'Edit' if post.title else 'New'}}{% endblock %}
5
6
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}:
7
      {{'Editing "%s"' % post.title if post.title else 'New Post'}}{% endblock %}
8
9
{% block content %}
10
    <div class="content">
11
      {{c.form.display(value=post, action='save')}}
12
    </div>
13
{% endblock %}