1
Fork 0
theorangeone.net-legacy/templates/projects/all.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 %}