You are here

forward.html.twig in Forward 4.x

<html>
  <body>
    <table width="600" cellspacing="0" cellpadding="10" border="0">
      <thead>
        <tr>
          <td width="25%">
            <div class="logo"><a href="{{ site_url }}" title="{{ site_name }}">{{ logo }}</a></div>
          </td>
          <td>
            <h1 class="site-name"><a href="{{ site_url }}" title="{{ site_name }}">{{ site_name }}</a></h1>
          </td>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td colspan="2">
            {% if header %}
              <div class="header">{{ header }}</div>
            {% endif %}
            {% if message %}
              <div class="message">{{ message }}</div>
            {% endif %}
            <div class="content">{{ content }}</div>
            {% if link %}
              <div class="link">{{ link }}</div>
            {% endif %}
            {% if footer %}
              <div class="footer">{{ footer }}</div>
            {% endif %}
          </td>
        </tr>
      </tbody>
    </table>
  </body>
</html>

File

templates/forward.html.twig
View source
  1. <html>
  2. <body>
  3. <table width="600" cellspacing="0" cellpadding="10" border="0">
  4. <thead>
  5. <tr>
  6. <td width="25%">
  7. <div class="logo"><a href="{{ site_url }}" title="{{ site_name }}">{{ logo }}</a></div>
  8. </td>
  9. <td>
  10. <h1 class="site-name"><a href="{{ site_url }}" title="{{ site_name }}">{{ site_name }}</a></h1>
  11. </td>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <tr>
  16. <td colspan="2">
  17. {% if header %}
  18. <div class="header">{{ header }}</div>
  19. {% endif %}
  20. {% if message %}
  21. <div class="message">{{ message }}</div>
  22. {% endif %}
  23. <div class="content">{{ content }}</div>
  24. {% if link %}
  25. <div class="link">{{ link }}</div>
  26. {% endif %}
  27. {% if footer %}
  28. <div class="footer">{{ footer }}</div>
  29. {% endif %}
  30. </td>
  31. </tr>
  32. </tbody>
  33. </table>
  34. </body>
  35. </html>