[tor-commits] [tpo/master] Fix handlebar

hiro at torproject.org hiro at torproject.org
Thu May 2 14:49:08 UTC 2019


commit fe7a8ebee385eadd8032faf239b12a065f56f5e3
Author: hiro <hiro at torproject.org>
Date:   Thu May 2 16:48:35 2019 +0200

    Fix handlebar
---
 templates/download-tor.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates/download-tor.html b/templates/download-tor.html
index 699ce0a..b9bc816 100644
--- a/templates/download-tor.html
+++ b/templates/download-tor.html
@@ -22,11 +22,11 @@
         {% set alpha_sig_link = alpha_download_link + '.asc' %}
         <tr>
           <td>{{ t.version }}</td>
-          <td class="text-right"><a href="{{ download_link }}">{ _('Download') }</a> (<a href="{{ sig_link }}">{ _('sig') }</a>)</td>
+          <td class="text-right"><a href="{{ download_link }}">{{ _('Download') }}</a> (<a href="{{ sig_link }}">{{ _('sig') }}</a>)</td>
         </tr>
         <tr>
           <td>{{ a.version }}</td>
-          <td class="text-right"><a href="{{ alpha_download_link }}">{ _('Download') }</a> (<a href="{{ alpha_sig_link }}">{ _('sig') }</a>)</td>
+          <td class="text-right"><a href="{{ alpha_download_link }}">{{ _('Download') }}</a> (<a href="{{ alpha_sig_link }}">{{ _('sig') }}</a>)</td>
         </tr>
       </tbody>
     </table>



More information about the tor-commits mailing list