91 lines
4.1 KiB
HTML
91 lines
4.1 KiB
HTML
<link rel="stylesheet" href="../static/css/publications.css">
|
||
{% extends "base.html" %}
|
||
|
||
{% block content %}
|
||
<table>
|
||
<td id="row1"></td>
|
||
<td id="row2">
|
||
<h1 class="post_zag">Свежее</h1>
|
||
<div class="fresh_block" id="fresh">
|
||
{% if fresh_post != [] %}
|
||
{% for item in fresh_post %}
|
||
<div class="card-body post">
|
||
<details>
|
||
<summary>
|
||
{% if item.name != None %}
|
||
<h2 class="card-title post_zag" style="color:#c5f1ff">{{item.name}}</h2>
|
||
{% endif %}
|
||
</summary>
|
||
{% if item.text != None %}
|
||
<strong class="card-text" style="color:#ffffff">{{item.text}}</strong>
|
||
{% endif %}
|
||
</details>
|
||
{% if emotion_fresh[loop.index0]['pos_emot'] != None %}
|
||
<div class="pos_emot">
|
||
<details>
|
||
<summary class="emot_block">
|
||
<strong class="emot_block">Позитивные эмоции</strong>
|
||
</summary>
|
||
<p></p>
|
||
{% for item2 in emotion_fresh[loop.index0]['pos_emot'] %}
|
||
<strong class="alert alert-success" role="alert" style="border-radius: 22px;">{{item2}}</strong>
|
||
{% endfor %}
|
||
</details>
|
||
</div>
|
||
<p></p>
|
||
{% endif %}
|
||
{% if emotion_fresh[loop.index0]['nig_emot'] != None %}
|
||
<div class="nig_emot">
|
||
<details>
|
||
<summary class="emot_block">
|
||
<strong class="emot_block">Негативные эмоции</strong>
|
||
</summary>
|
||
<p></p>
|
||
{% for item2 in emotion_fresh[loop.index0]['nig_emot'] %}
|
||
<strong class="alert alert-danger" role="alert" style="border-radius: 22px;">{{item2}}</strong>
|
||
{% endfor %}
|
||
</details>
|
||
</div>
|
||
<p></p>
|
||
{% endif %}
|
||
{% if item.photo != None %}
|
||
<p></p>
|
||
<div class="photo">
|
||
<img width="90%" src="{{ item.photo }}"
|
||
style="border-radius: 22px;">
|
||
</div>
|
||
<p></p>
|
||
{% endif %}
|
||
{% if emotion_fresh[loop.index0]['link'] != None %}
|
||
<details>
|
||
<summary class="emot_block">
|
||
<strong class="emot_block">Ссылки</strong>
|
||
</summary>
|
||
<p></p>
|
||
{% for item2 in emotion_fresh[loop.index0]['link'] %}
|
||
<div class="link">
|
||
<a class="alert alert-light" role="alert" href="{{ item2 }}" style="border-radius: 22px;">Ссылка
|
||
{{ loop.index }}</a>
|
||
</div>
|
||
<p></p>
|
||
{% endfor %}
|
||
</details>
|
||
{% endif %}
|
||
<div class="author" style="style=position:absolute; width:148px; height:44px; left:255px; -webkit-border-radius:
|
||
22px;-moz-border-radius: 22px;border-radius: 22px; border:2px solid #FFFFFF; background-color:#1daff0; top:
|
||
98px;"><img src="../{{ emotion_fresh[loop.index0]['author'].photo }}" width="40" height="40" style="border-radius: 22px">
|
||
<strong style="color: #ffffff">{{ emotion_fresh[loop.index0]['author'].name }}</strong>
|
||
</div>
|
||
<strong style="color:#ffffff">{{item.date}}</strong>
|
||
</div>
|
||
{% endfor %}
|
||
</div>
|
||
{% else %}
|
||
<div class="bad_centre" style="background-color:#1daff0; border-radius: 22px;color:#ffffff">
|
||
<h1 class="hz1">Ничего не нашлось :с</h1>
|
||
</div>
|
||
{% endif %}
|
||
</td>
|
||
<td id="row3"></td>
|
||
</table>
|
||
{% endblock %} |