diff options
author | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2022-05-01 22:06:03 +0200 |
---|---|---|
committer | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2022-05-01 22:06:03 +0200 |
commit | 72ae9b3f63ddbe296f3e4e8f8db2d29303163d68 (patch) | |
tree | f0db960b784719df0c7318720880c73b5330b937 /templates/webmail/about.html.ep | |
parent | 7c8bd21ccbca8a3166289ab0e5511cc82d2822aa (diff) |
use more tag helpers in templates
Diffstat (limited to 'templates/webmail/about.html.ep')
-rw-r--r-- | templates/webmail/about.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/webmail/about.html.ep b/templates/webmail/about.html.ep index 49ecc1a..60fe549 100644 --- a/templates/webmail/about.html.ep +++ b/templates/webmail/about.html.ep @@ -47,7 +47,7 @@ <li>Supported languages: <p class=languages> % foreach (@$languages) { - <a href="<%= url_for(lang => $_) %>"><%= $_ %></a> + %= link_to $_ => {lang => $_} % } </p> </li> @@ -64,7 +64,7 @@ <tr> <td> <nav> - <a href="<%= url_for('noaction') %>" class=btn>login</a> + %= button_to login => 'noaction' => (class => 'link-btn') </nav> </td> </tr> |