1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/projects/index.html

17 lines
432 B
HTML

{% extends 'content_base.html' %}
{% block pageTitle %}All Projects{% endblock %}
{% block content %}
<div class="row">
<div class="container all-projects">
{% for project in projects %}
<div class="">
<img src="{{ project.header_image }}">
<h4>{{ project.name }}</h4>
<a href="{{ project.url }}">Read More</a>
</div>
{% endfor %}
</div>
</div>
{% endblock %}