-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.html
More file actions
27 lines (27 loc) · 763 Bytes
/
Copy pathreview.html
File metadata and controls
27 lines (27 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<article class="media">
<figure class="media-left">
{% if review.avatar %}
<p class="image is-48x48">
<img src="https://bulma.io/images/placeholders/128x128.png">
</p>
{% else %}
<div class="icon is-large">
<i class="fas fa-user fa-2x"></i>
</div>
{% endif %}
</figure>
<div class="media-content">
<div class="content">
<p>
<strong>{{ review.name }}</strong> <small>{{ review.date }}</small>
<br>
{{ review.title }}
<br>
{{ review.description }}
</p>
</div>
{% if review.rating %}
{% include rating.html rating=review.rating align="has-text-left" %}
{% endif %}
</div>
</article>