mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-07 07:11:58 +08:00
Currently, herb/formatter has at least 4 bugs the prevent us from switching to it (https://github.com/marcoroth/herb/issues 476, 477, 478, and 479). This includes manual fixes for each issue. herb/formatter also introduces a rubocop violation for the Layout/AssignmentIndentation cop. This disables that cop.
28 lines
585 B
Text
28 lines
585 B
Text
<% require "date" %>
|
|
|
|
<tr>
|
|
<td>
|
|
<table
|
|
class="footer"
|
|
align="center"
|
|
width="570"
|
|
cellpadding="0"
|
|
cellspacing="0"
|
|
role="presentation"
|
|
>
|
|
<tr>
|
|
<td align="left">
|
|
<p>
|
|
© <%= Date.today.year %> Ubicloud. All rights reserved.
|
|
</p>
|
|
</td>
|
|
<td align="right">
|
|
<a href="https://github.com/ubicloud/ubicloud" class="icon">
|
|
<%== part("components/icon", name: "github", classes: "") %>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
<tr></tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|