summaryrefslogtreecommitdiffstats
path: root/themes/newsletter/templates/base.html
blob: 70eff09776e2eb56c90b2ae06503eadafd91359d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width"/>

    <style type="text/css">
     {{CSS_INK}}
    </style>
    <style type="text/css">
     {{CSS_MAIN}}
    </style>
  </head>
  <body>
    <table class="body">
      <tr>
        <td class="center" align="center" valign="top">
          <center>
            <table class="container">
              <tr>
                <td>

                  <table class="row">
                    <tr>
                      <td class="wrapper last">
                        <table class="twelve columns">
                          <tr>
                            <td class="center">
                              <small>
                                Email isn't displaying correctly?
                                <a href="{% block selfurl %}{% endblock selfurl %}">
                                  Read this on the Web.
                                </a>
                              </small>
                            </td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>

                  <table class="row header">
                    <tr>
                      <td class="wrapper">
                        <table class="twelve columns">
                          <tr>
                            <td>
                              <h1 class="title">This Week in Rust</h1>
                              &nbsp;
                              {% block number_and_date %}{% endblock number_and_date %}
                            </td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>

                  <table class="row">
                    <tr>
                      <td class="wrapper last">
                        <table class="twelve columns">
                          <tr>
                            <td>
                              {% block content %}
                              {% endblock content %}
                            </td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>

                  <table class="row footer">
                    <tr>
                      <td class="wrapper last">
                        <table class="twelve columns">
                          <tr>
                            <td class="center">
                              <small>
                                Sponsored by <a href="http://webstream.io">webstream.io</a>.
                                <br />
                                twiiter: <a href="https://twitter.com/ThisWeekInRust">@ThisWeekInRust</a>
                                <br />
                                <a href="{{ SITEURL }}/pages/privacy-policy.html">Privacy policy</a>
                                |
                                <a href="*|UNSUB|*">Unsubscribe</a>
                                |
                                <a href="*|UPDATE_PROFILE|*">Change email address</a>
                                |
                                <a href="{{ self.selfurl() }}">Read this issue on the Web</a>
                              </small>
                            </td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>

                </td>
              </tr>
            </table>
          </center>
        </td>
      </tr>
    </table>
  </body>
</html>