- added message for all bulk actions except trash related ones - fixed issue with mailpoet notice and react router
33 lines
808 B
HTML
33 lines
808 B
HTML
<!-- system notices -->
|
|
<div id="mailpoet_notice_system" class="mailpoet_notice" style="display:none;"></div>
|
|
<!-- main container -->
|
|
<div class="wrap">
|
|
<!-- notices -->
|
|
<div id="mailpoet_notice_error" class="mailpoet_notice" style="display:none;"></div>
|
|
<div id="mailpoet_notice_success" class="mailpoet_notice" style="display:none;"></div>
|
|
|
|
<!-- title block -->
|
|
<% block title %><% endblock %>
|
|
<!-- content block -->
|
|
<% block content %><% endblock %>
|
|
</div>
|
|
|
|
<!-- stylesheets -->
|
|
<%= stylesheet(
|
|
'admin.css'
|
|
)%>
|
|
<!-- rtl specific stylesheet -->
|
|
<% if is_rtl %>
|
|
<%= stylesheet('rtl.css') %>
|
|
<% endif %>
|
|
|
|
<!-- javascripts -->
|
|
<%= javascript(
|
|
'vendor.js',
|
|
'mailpoet.js',
|
|
'admin.js'
|
|
)%>
|
|
|
|
<!-- handlebars templates -->
|
|
<% block templates %><% endblock %>
|