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

18 lines
432 B
HTML
Raw Normal View History

{% extends 'content_base.html' %}
{% block pageTitle %}All Projects{% endblock %}
{% block content %}
2016-03-15 21:55:36 +00:00
<div class="row">
<div class="container all-projects">
2016-04-09 14:24:20 +01:00
{% for project in projects %}
2016-03-15 21:55:36 +00:00
<div class="">
2016-04-09 14:24:20 +01:00
<img src="{{ project.header_image }}">
<h4>{{ project.name }}</h4>
<a href="{{ project.url }}">Read More</a>
2016-03-15 21:55:36 +00:00
</div>
{% endfor %}
</div>
</div>
{% endblock %}