Added project view pagae

This commit is contained in:
2023-11-26 02:23:52 -05:00
parent ecc48226a7
commit e5602e660d
3 changed files with 28 additions and 0 deletions

15
views/project/view.twig Normal file
View File

@ -0,0 +1,15 @@
{% extends 'layouts/default.twig' %}
{% block title %}{{ project.title }}{% endblock %}
{% block content %}
<div class="row">
<h2>{{ project.title }}</h2>
<p>{{ project.description }}</p>
<hr>
<p><a href="/project">Back</a></p>
</div>
{% endblock %}