Blame view

frontend/mail/layouts/parts/footer.php 9.57 KB
d1f8bd40   Alexey Boroda   first commit
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  <?php
  use yii\helpers\Html;
  
  /**
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   *
   * @var $params \thread\modules\sys\modules\configs\components\ConfigsParams
   * @var $metaBaseInfo \thread\modules\seo\modules\info\components\MetaBaseInfo
   * @var $asset \frontend\themes\threproject\assets\MailAsset
   */
  $params = Yii::$app->param;
  $metaBaseInfo = Yii::$app->metabaseinfo;
  ?>
  <!-- Footer Start -->
  <table align="center" border="0" cellpadding="0" cellspacing="0" width="800"
         style="border-collapse: collapse;">
      <tr>
          <td>
              <table bgcolor="#ffffff" align="center" border="0" cellpadding="0" cellspacing="0" width="780"
                     style="border-collapse: collapse;">
                  <tr>
                      <td>
                          <!-- Space -->
                          <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0"
                                 style="border-collapse: collapse;">
                              <tr>
                                  <td style="font-size: 0; line-height: 0;" height="30">
                                      &nbsp;
                                  </td>
                              </tr>
                          </table>
                          <table align="center" border="0" cellpadding="0" cellspacing="0" width="740"
                                 style="border-collapse: collapse;">
                              <tr>
                                  <td>
                                      <!-- First Column -->
                                      <table align="left" border="0" cellpadding="0" cellspacing="0"
                                             width="250" style="border-collapse: collapse;">
                                          <tr>
                                              <td>
                                                  <?= Html::a(Html::img($metaBaseInfo->getSiteLogo(), [
                                                      'alt' => $metaBaseInfo->getSiteName(),
                                                      'style' => 'display: block; width:100px;'
                                                  ]), $metaBaseInfo->getBaseUrl()) ?>
                                              </td>
                                          </tr>
                                          <!-- Space -->
                                          <tr>
                                              <td style="font-size: 0; line-height: 0;" height="20">
                                                  &nbsp;
                                              </td>
                                          </tr>
                                          <tr>
                                              <td style="color: #999999; font-size: 14px; line-height: 18px; font-weight: normal; font-family: helvetica, Arial, sans-serif;">
                                                  <?= $metaBaseInfo->getSiteAlternatename() ?>
                                              </td>
                                          </tr>
                                          <!-- Space -->
                                          <tr>
                                              <td style="font-size: 0; line-height: 0;" height="15">
                                                  &nbsp;
                                              </td>
                                          </tr>
                                      </table>
                                      <!-- Gutter 20px -->
                                      <table align="left" border="0" cellpadding="0" cellspacing="0"
                                             width="40" style="border-collapse: collapse;">
                                          <tr>
                                              <td>
                                                  &nbsp;
                                              </td>
                                          </tr>
                                      </table>
                                      <!-- Second Column -->
                                      <table align="left" border="0" cellpadding="0" cellspacing="0"
                                             width="250" style="border-collapse: collapse;">
                                          <!-- Space -->
                                          <tr>
                                              <td style="font-size: 0; line-height: 0;" height="57">
                                                  &nbsp;
                                              </td>
                                          </tr>
                                          <tr>
                                              <td width="22">
                                                  <?= Html::img($asset->baseUrl . '/images/marker-icon.png') ?>
                                              </td>
                                              <td style="color: #999999; font-size: 14px; line-height: 18px; font-weight: normal; font-family: helvetica, Arial, sans-serif;">
                                              </td>
                                          </tr>
                                          <!-- Space -->
                                          <tr>
                                              <td style="font-size: 0; line-height: 0;" height="10">
                                                  &nbsp;
                                              </td>
                                          </tr>
                                          <tr>
                                              <td width="22">
                                                  <?= Html::img($asset->baseUrl . '/images/phone-icon.png') ?>
                                              </td>
                                              <td style="color: #999999; font-size: 14px; line-height: 18px; font-weight: normal; font-family: helvetica, Arial, sans-serif;">
                                              </td>
                                          </tr>
                                          <!-- Space -->
                                          <tr>
                                              <td style="font-size: 0; line-height: 0;" height="10">
                                                  &nbsp;
                                              </td>
                                          </tr>
                                          <tr>
                                              <td width="22">
                                                  <?= Html::img($asset->baseUrl . '/images/mail-icon.png') ?>
                                              </td>
                                              <td>
                                              </td>
                                          </tr>
                                      </table>
                                  </td>
                              </tr>
                          </table>
                          <!-- Space -->
                          <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0"
                                 style="border-collapse: collapse;">
                              <tr>
                                  <td style="font-size: 0; line-height: 0;" height="30">
                                      &nbsp;
                                  </td>
                              </tr>
                          </table>
                      </td>
                  </tr>
              </table>
          </td>
      </tr>
  
  </table>
  <!-- Footer End -->
  
  <!-- Subfooter Start -->
  <table align="center" border="0" cellpadding="0" cellspacing="0" width="800"
         style="border-collapse: collapse;">
      <tr>
          <td>
              <table bgcolor="#f5f5f5" align="center" border="0" cellpadding="0" cellspacing="0" width="780"
                     style="border-collapse: collapse;">
                  <tr>
                      <td>
                          <!-- Space -->
                          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"
                                 style="border-collapse: collapse;">
                              <tr>
                                  <td style="font-size: 0; line-height: 0;" bgcolor="#eaeaea" height="1">
                                      &nbsp;
                                  </td>
                              </tr>
                              <tr>
                                  <td style="font-size: 0; line-height: 0;" height="20">
                                      &nbsp;
                                  </td>
                              </tr>
                          </table>
                          <table align="center" border="0" cellpadding="0" cellspacing="0" width="740"
                                 style="border-collapse: collapse;">
                              <tr>
                                  <td align="center"
                                      style="color: #999999; font-size: 14px; line-height: 18px; font-weight: normal; font-family: helvetica, Arial, sans-serif;">
                                      ©Copyright. All Rights Reserved.
                                  </td>
                              </tr>
                          </table>
                          <!-- Space -->
                          <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0"
                                 style="border-collapse: collapse;">
                              <tr>
                                  <td style="font-size: 0; line-height: 0;" height="20">
                                      &nbsp;
                                  </td>
                              </tr>
                          </table>
                      </td>
                  </tr>
              </table>
          </td>
      </tr>
  </table>
  <!-- Subfooter End -->