16 lines
380 B
HTML
16 lines
380 B
HTML
{% extends 'content_base.html' %}
|
|
|
|
{% block pageTitle %}All Projects{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="container all-projects">
|
|
{% for key, project in projects.items %}
|
|
<div class="">
|
|
<img src="{{ project.image }}">
|
|
<h5>{{ project.title }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|