1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/components/wikibox.html

19 lines
No EOL
599 B
HTML

<script>
function createpage() {
var key = document.getElementById("input-key").value;
window.location.href = `/wiki/${key}`;
}
</script>
<div class="box">
<div class="upper-box">
Pagine Wiki
</div>
<div class="lower-box">
<ul>
{% for page in wiki_pages %}
<li><a href="/wiki/{{ page.key }}">{{ page.key }}</a></li>
{% endfor %}
</ul>
oppure... <input id="input-key" name="key" type="text" placeholder="Nome pagina" class="half"><button onclick="createpage()">Crea</button>
</div>
</div>