flask-htmx-board1/templates/interactive-posts.html
Simple_Not 5c99fc6f8d
All checks were successful
continuous-integration/drone/push Build is passing
checking threads viz
2024-01-29 01:39:59 +10:00

24 lines
560 B
HTML

{% extends "base.html" %}
{% block content %}
{% include 'navbar.html' %}
<div class="row" >
<div class="col s6 m5" id="neu-posts">
{% include 'i-posts.html' %}
</div>
<div class="col s6 m5" id="thread-viz">
<iframe src="https://thread-visualizah-dev.board.vdk2ch.ru/" scrolling="no" frameborder="0" style="position: relative; height: 100%; width: 100%;"></iframe>
</div>
</div>
<div class="row">
<div class="col s7 m6" id="answer-post">
{% include 'answer-post.html' %}
</div>
</div>
{% endblock content %}