39 lines
947 B
HTML
39 lines
947 B
HTML
{% extends 'h_tmp_usr/z_tmp.html' %}
|
|
|
|
{% block css %}
|
|
<link rel="stylesheet" href="{{ url_for( 'static', filename='h_tmp_user/d_read_post/read_post.css' ) }}">
|
|
{% endblock css %}
|
|
|
|
{% block body %}
|
|
|
|
|
|
|
|
|
|
<div class="pst-cont">
|
|
<h1>{{data[2]}}</h1>
|
|
<span>
|
|
<i class="bi bi-calendar-week"></i> {{data[0]}}
|
|
{% if data[1] is not none %} | <i class="bi bi-arrow-repeat"></i> {{data[1]}}{% endif %}
|
|
| <i class="bi bi-clock-fill"></i> {{time_read}}
|
|
</span>
|
|
<div>
|
|
<a type="button" class="btn btn-info" href="{{ url_for('my_posts') }}"><i class="bi bi-arrow-left"></i> Mis Publicaciones.</a>
|
|
<a type="button" class="btn btn-secondary" href="{{ url_for('edit_post', id_post= post_id ) }}"><i class="bi bi-vector-pen"></i> Editar.</a>
|
|
</div>
|
|
|
|
<div>
|
|
{{data[3] | safe}}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock body %}
|
|
|
|
{% block js %}
|
|
<!-- {# flecha ir hasta arriba #} -->
|
|
{% include 'z_comps/arrow_to_up.html' %}
|
|
|
|
|
|
{% endblock js %} |