form
9 years ago
newsletter
9 years ago
settings
9 years ago
subscribers
9 years ago
forms.html
9 years ago
index.html
9 years ago
index.php
9 years ago
layout.html
9 years ago
limit.html
9 years ago
newsletters.html
9 years ago
segments.html
9 years ago
settings.html
9 years ago
update.html
9 years ago
welcome.html
9 years ago
update.html
51 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | |
| 5 | <style type="text/css"> |
| 6 | #mailpoet-changelog ul { |
| 7 | list-style: disc; |
| 8 | padding-left: 20px; |
| 9 | } |
| 10 | </style> |
| 11 | |
| 12 | <div class="wrap about-wrap"> |
| 13 | <h1><%= __('Welcome to MailPoet') %> <%= settings.version %></h1> |
| 14 | |
| 15 | <p class="about-text"><%= __("Thank you for helping us test and improve this new version of MailPoet. You're one of our extra-special beta testers. We really appreciate your help!") %> |
| 16 | </p> |
| 17 | <div style="position: absolute; top: .2em; right: 0;"><img src="<%= image_url('welcome_template/mailpoet-logo.png') %>" alt="MailPoet Logo" /></div> |
| 18 | |
| 19 | <h2 class="nav-tab-wrapper wp-clearfix"> |
| 20 | <a href="admin.php?page=mailpoet-welcome" class="nav-tab"><%= __('Welcome') %></a> |
| 21 | <a href="admin.php?page=mailpoet-update" class="nav-tab nav-tab-active"><%= __("What's New") %></a> |
| 22 | </h2> |
| 23 | |
| 24 | <div id="mailpoet-changelog" clas="feature-section one-col"> |
| 25 | <h2><%= __("List of Changes") %></h2> |
| 26 | <% if changelog %> |
| 27 | <% for item in changelog %> |
| 28 | <h3><%= item.version %></h3> |
| 29 | <ul> |
| 30 | <% for change in item.changes %> |
| 31 | <li><%= change %></li> |
| 32 | <% endfor %> |
| 33 | </ul> |
| 34 | <br> |
| 35 | <% endfor %> |
| 36 | <% else %> |
| 37 | <p style="text-align: center"><%= __("See readme.txt for a changelog.") %></p> |
| 38 | <% endif %> |
| 39 | </div> |
| 40 | |
| 41 | <hr> |
| 42 | |
| 43 | <div clas="feature-section one-col"> |
| 44 | <br> |
| 45 | <p style="text-align: center"><a class="button button-primary" href="admin.php?page=mailpoet-newsletters"><%= __("Awesome! Now, take me to MailPoet") %> →</a> <a class="button button-secondary" href="https://wordpress.org/plugins/mailpoet/changelog/" target="_blank"><%= __("View all changes") %> →</a></p> |
| 46 | </div> |
| 47 | |
| 48 | </div> |
| 49 | |
| 50 | <% endblock %> |
| 51 |