File "date_months.hbs"

Full Path: /home/warrior1/public_html/plugins/mailpoet/views/form/templatesLegacy/blocks/date_months.hbs
File size: 355 bytes
MIME-type: text/plain
Charset: utf-8

<% set currentMonth = 'now'|date('n') %>
<select id="{{ id }}_months">
  <option value=""><%= __('Month') %></option>
  <% for month in 1..12 %>
    <option
      <% if(currentMonth == month) %>
      {{#if params.is_default_today}}selected="selected"{{/if}}
      <% endif %>
    >
    <%= month_names[month - 1] %>
    </option>
  <% endfor %>
</select>