34 lines
998 B
HTML
34 lines
998 B
HTML
<% extends 'layout.html' %>
|
|
|
|
<% block content %>
|
|
|
|
<div class="wrap mailpoet-about-wrap">
|
|
<h1><%= __("You've reached the %s subscribers limit!") | format(number_format_i18n(limit)) %></h1>
|
|
|
|
<p class="about-text">
|
|
<%= __("Our free version is limited to %s subscribers.") | format(number_format_i18n(limit)) %>
|
|
</p>
|
|
|
|
<img
|
|
src="http://i2.wp.com/www.mailpoet.com/wp-content/uploads/2018/09/2000-limit-illustration.png?resize=1050%2C350"
|
|
alt="sad-cat"
|
|
width="1050"
|
|
height="350"
|
|
/>
|
|
|
|
<h3><%= __('Immediately, you can:') %></h3>
|
|
<ul class="ul-disc">
|
|
<li><%= __('Delete unconfirmed subscribers to have less than %s subscribers.') | format(number_format_i18n(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 %>
|