dynamic.html
1 month ago
index.php
3 years ago
static.html
2 months ago
translations.html
1 month ago
static.html
20 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <div id="static_segments_container"></div> |
| 5 | |
| 6 | <script type="text/javascript"> |
| 7 | var mailpoet_listing_per_page = <%= items_per_page %>; |
| 8 | var mailpoet_segments_api = <%= json_encode(api) %>; |
| 9 | var mailpoet_confirmation_emails = <%= json_encode(confirmation_emails) %>; |
| 10 | var mailpoet_pages = <%= json_encode(pages) %>; |
| 11 | </script> |
| 12 | |
| 13 | <% include 'segments/translations.html' %> |
| 14 | <% endblock %> |
| 15 | |
| 16 | |
| 17 | <% block after_translations %> |
| 18 | <%= do_action('mailpoet_segments_translations_after') %> |
| 19 | <% endblock %> |
| 20 |