miniweb/templates/howto/index.html

32 lines
652 B
HTML

{% extends "index.html" %}
{% block content %}
<h1>Howtos</h1>
<div>
<form hx-post="/howto" hx-trigger="submit" hx-target="#answer">
<label for="question">Question:</label>
<input type="text" id="question" name="question" required>
<input type="submit" value="Submit">
</form>
<div class="uk-card uk-card-body" id="answer">
<h3 class="uk-card-title"></h3>
</div>
</div>
{% filter markdown %}
### Tasklist
- [x] Done
- [ ] Todo
| Hello | World |
| --- | --- |
| Hi | There |
| Yo hoho | |
{% endfilter %}
{% endblock %}