templates/modules/enews-signup.html.twig line 1

Open in your IDE?
  1. {% extends "modules/tmpl/default.html.twig" %}
  2.     
  3. {# enews signup module #}
  4. {% block module_title %}{% if app.user %}{% else %}<h3 class="module-title">Sign Up for Our E-News!</h3>{% endif %}{% endblock %}
  5. {% block module_content %}
  6. {% if app.user %}
  7.     {% include 'modules/up-to-the-minute-content.html.twig' %}
  8. {% else %}
  9.     <p>Join over 18,000 other roofers who get the Week in Roofing for a recap of this week's best industry posts!</p>
  10.     <center><a class="button alt" href="/sign-up">Sign Up</a></center>
  11.     {% endif %}
  12. {% endblock %}