You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
<html>
|
|
<body>
|
|
<div class="Quote_container">
|
|
<img class="image_carac" src="{{ srcImg }}" alt="{{ nameCarac }}">
|
|
<h1 class="quote_content">
|
|
<strong>
|
|
{{ quoteContent }}
|
|
</strong>
|
|
</h1>
|
|
<ul>
|
|
<li>
|
|
{{ sourceName }}
|
|
</li>
|
|
<li>
|
|
{{ nameCarac }}
|
|
</li>
|
|
<li>
|
|
{{ dateSortie }}
|
|
</li>
|
|
</ul>
|
|
<div class="like">
|
|
<p>
|
|
{{ nbLike }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="Comment_Container">
|
|
{% if comment|length > 0%} <div>
|
|
{% for com in comment %}
|
|
<p class="userCom">{{ com.user }}</p>
|
|
<p class="com">{{ com.content }}</p>
|
|
{% endfor %} </div>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html> |