check posts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-07-13 20:09:26 +10:00
parent f064c0aedd
commit e7e34ff9f6

View File

@ -1,7 +1,18 @@
{% if postos | length > 0 %}
{% for posto in postos %}
<div class="posto">
{{ posto.texto }}
<div class="row">
<div class="col s12 m6">
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title">Card Title</span>
<p>{{ posto.texto }}</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href="#">This is a link</a>
</div>
</div>
</div>
</div>
{% endfor %}
{% endif %}