mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-03-21 14:39:19 +01:00
templates: Fix the link template
This was originally an embedded string in Rust, which needed to escape the quotation mark. The escaping is no longer needed in raw HBS. Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
This commit is contained in:
parent
5d60b84300
commit
ed1f5d0a3a
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
||||||
{{/each}}
|
{{/each}}
|
||||||
<ul>
|
<ul>
|
||||||
{{#each links}}
|
{{#each links}}
|
||||||
<li><a href=\"{{ this.href }}\">{{ this.title }}</a></li>
|
<li><a href="{{ this.href }}">{{ this.title }}</a></li>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</ul>
|
</ul>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue