mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 17:51:12 +02:00
36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
<div class="row row-deck row-cards">
|
|
{% for project in object_list %}
|
|
<div class="col-md-4">
|
|
{% if project.url %}
|
|
<a class="card card-link card-link-pop"
|
|
href="{{ project.url }}"
|
|
target="_blank">
|
|
<div class="card-body">
|
|
<h4>{{ project.name }}</h4>
|
|
<p>{{ project.short_description }}</p>
|
|
<div>
|
|
{% for t in project.tags.all %}
|
|
<div class="badge text-white fs-5"
|
|
style="background-color: #{{ t.color }}">{{ t }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{% else %}
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h4>{{ project.name }}</h4>
|
|
<p>{{ project.short_description }}</p>
|
|
<div>
|
|
{% for t in project.tags.all %}
|
|
<div class="badge text-white fs-5"
|
|
style="background-color: #{{ t.color }}">{{ t }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|