21 lines
937 B
HTML
21 lines
937 B
HTML
<div class="wow animated fadeIn" data-wow-delay=".15s">
|
|
<a href="{{ project_url }}.html" class="project card text-dark">
|
|
{%- if project_img -%}
|
|
<img id="{{ project_id }}-img" class="card-img-top" src="{{ project_img }}" alt="{{ project_name }}" />
|
|
{%- endif -%}
|
|
<div class="card-body">
|
|
<h5 id="{{ project_id }}-name" class="card-title">
|
|
{%- if project_type == "remote" -%}
|
|
<i class="fab fa-github" data-toggle="tooltip" data-placement="bottom" data-delay="250" title="GitHub Repository"></i> |
|
|
{%- endif -%}
|
|
{{ project_name }}
|
|
</h5>
|
|
<p id="{{ project_id }}-desc" class="card-text">{{ project_desc }}</p>
|
|
<p id="{{ project_id }}-tools" class="card-text">
|
|
{%- for tool in project_tools -%}
|
|
<span class="badge badge-pill text-primary border border-primary ml-1">{{ tool }}</span>
|
|
{%- endfor -%}
|
|
</p>
|
|
</div>
|
|
</a>
|
|
</div> |