This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cardmaker/resources/cards/svg.vm
T
2017-10-15 11:31:29 +02:00

37 lines
766 B
Plaintext

<!DOCTYPE html>
<link rel="stylesheet" href="svg.css">
#macro(form)
<form action="svg" method="post" enctype="multipart/form-data">
<h3>Upload SVG:</h3>
<p>
<input type="file" name="file" accept="image/svg+xml"><br/>
<input type="text" name="name" placeholder="name">
<input type="submit">
#if($uploaded)
<i>Upload was successfull!</i>
#end
</p>
</form>
#end
<a href="../" style="opacity:0.6;">Return to cardlist</a>
#form()
<h1>Available SVGs:</h1>
<ul>
#foreach($name in $svgs)
<li><!--todo: add "copy to clipboard" feature-->
<h1>$name</h1>
<img src="/svg/${escape_html($name)}.svg">
</li>
#end
</ul>
#form()
<a href="../" style="opacity:0.6;">Return to cardlist</a>