This commit is contained in:
19
templates/board-posts.html
Normal file
19
templates/board-posts.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
|
||||
{% include 'navbar.html' %}
|
||||
|
||||
<div class="row" >
|
||||
<div class="col s6 m5" id="op-posts">
|
||||
{% include 'op-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: 600px; width: 100%; margin:10px;"></iframe>
|
||||
</div> -->
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
{% endblock content %}
|
@@ -17,8 +17,7 @@
|
||||
<div class="row" id="post-{{ posto._key }}">
|
||||
|
||||
{% if posto.images | length > 0 %}
|
||||
<div class="col s4">
|
||||
<div class="card-image" style=" margin:10px; ">
|
||||
<div class="col s12">
|
||||
<!-- <div class="hex-main">
|
||||
<div class="hex-container">
|
||||
<a href="https://loremflickr.com/g/320/240/paris" target="_blank" ">
|
||||
@@ -26,13 +25,23 @@
|
||||
</a>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<a href="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg" target="_blank" ">
|
||||
<img src="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg">
|
||||
</a>
|
||||
<span class="card-title"><a class="link" href="#post-{{ posto.parent_post }}"> >>{{ posto.parent_post }} </a> </span>
|
||||
<div class="nav-wrapper">
|
||||
<ul id="nav-mobile" class="right hide-on-med-and-down">
|
||||
<li>
|
||||
<a href="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg" target="_blank" ">
|
||||
<img src="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg" width="300px">
|
||||
</a>
|
||||
<span class=" "><a class="" href="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg" target="_blank"> photo_2023-05-16_00-49-34.jpg </a> </span>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://static.guaranteedstruggle.host/thread-pics/109.png" target="_blank" ">
|
||||
<img src="https://static.guaranteedstruggle.host/thread-pics/109.png" width="300px">
|
||||
</a>
|
||||
<span class=" "><a class="" href="https://static.guaranteedstruggle.host/thread-pics/109.png" target="_blank"> 109.png </a> </span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<!-- <div class="col s8">
|
||||
|
@@ -21,7 +21,7 @@
|
||||
{% if boards | length > 0 %}
|
||||
<p>Доски:</p>
|
||||
{% for board in boards %}
|
||||
<p><a href="/db_posts" class="lime-text red collection-item" style="padding: 2px 2px;">{{board}}</a></p>
|
||||
<p><a href="/{{board}}" class="lime-text red collection-item" style="padding: 2px 2px;">{{board}}</a></p>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
53
templates/op-posts.html
Normal file
53
templates/op-posts.html
Normal file
@@ -0,0 +1,53 @@
|
||||
{% if postos | length > 0 %}
|
||||
{% for posto in postos %}
|
||||
<div class="row">
|
||||
{% if posto.root_post %}
|
||||
<div class="card s5 deep-orange accent-4 darken-1">
|
||||
{% else %}
|
||||
<div class="card s5 blue-grey darken-1">
|
||||
{% endif %}
|
||||
|
||||
<div class="card-content white-text">
|
||||
<span class="new badge yellow" data-badge-caption="">
|
||||
<a class="purple-text" href="#post-{{ posto._key }}"> #{{ posto._key }} </a>
|
||||
</span>
|
||||
<span class="new badge blue" data-badge-caption="">Ответов: {{ posto.answers_num }}</span>
|
||||
<span class="new badge red" data-badge-caption="">Длина треда: {{ posto.children_num }}</span>
|
||||
</div>
|
||||
<div class="row" id="post-{{ posto._key }}">
|
||||
|
||||
{% if posto.images | length > 0 %}
|
||||
<div class="col s12">
|
||||
<!-- <div class="nav-wrapper">
|
||||
<ul id="nav-mobile" class="right hide-on-med-and-down">
|
||||
<li>
|
||||
<a href="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg" target="_blank" ">
|
||||
<img src="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg" width="300px">
|
||||
</a>
|
||||
<span class=" "><a class="" href="https://static.guaranteedstruggle.host/thread-pics/photo_2023-05-16_00-49-34.jpg" target="_blank"> photo_2023-05-16_00-49-34.jpg </a> </span>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://static.guaranteedstruggle.host/thread-pics/109.png" target="_blank" ">
|
||||
<img src="https://static.guaranteedstruggle.host/thread-pics/109.png" width="300px">
|
||||
</a>
|
||||
<span class=" "><a class="" href="https://static.guaranteedstruggle.host/thread-pics/109.png" target="_blank"> 109.png </a> </span>
|
||||
</li>
|
||||
</ul>
|
||||
</div> -->
|
||||
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="col s12 card-content white-text">
|
||||
<p>{{ posto.texto }}</p>
|
||||
</div>
|
||||
<div class="col s12 card-action white-text">
|
||||
<div class="right">
|
||||
<!-- <a href="#" hx-post="/post_my_post/{{ posto._key }}" hx-target="#neu-posts" >Answer me!</a> -->
|
||||
<a href="#answer-post" hx-post="/answer_post/{{ posto._key }}" hx-target="#answer-post" >В тред!</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
Reference in New Issue
Block a user