33 lines
921 B
HTML
33 lines
921 B
HTML
<% extends 'layout.html' %>
|
|
|
|
<% block content %>
|
|
|
|
<div class="wrap mailpoet-about-wrap">
|
|
<h1><%= __("You've reached the %d subscribers limit!") | format(limit) %></h1>
|
|
|
|
<p class="about-text">
|
|
<%= __("Our free version is limited to 2000 subscribers.") | format(limit) %>
|
|
</p>
|
|
|
|
<img
|
|
src="http://i2.wp.com/www.mailpoet.com/wp-content/uploads/2015/05/sad-cat.gif?resize=500%2C212"
|
|
alt="sad-cat"
|
|
width="500"
|
|
height="212"
|
|
/>
|
|
|
|
<h3><%= __('Immediately, you can:') %></h3>
|
|
<ul class="ul-disc">
|
|
<li><%= __('Delete unconfirmed subscribers to have less than %d subscribers.') | format(limit) %></li>
|
|
<li><%= __('Install the Premium plugin if you have purchased it.') %></li>
|
|
<li>
|
|
<a
|
|
href="<%= admin_url('admin.php?page=mailpoet-premium') %>"
|
|
class="button-primary"
|
|
>
|
|
<%= __('Check out the Premium')%>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<% endblock %> |