templates/convert.html (view raw)
1{{template "header" .}}
2<h1>Convert HTML to Gemini Text</h1>
3<p>
4A tool for converting HTML to Gemini Text. Useful if you have an HTML site you want to add to Flounder.</p>
5<form id="convert-form" action="/convert" method="POST">
6 <textarea rows="27" name="file_text" id="editor">{{.Text}}</textarea>
7 <br>
8 <input type="submit" value="Convert" class="button">
9</form>
10{{ template "footer" .}}