blob: 4137bf9f3fd3a24af0d3fb77a9bffdf0f13cbc88 (
plain)
1
2
3
4
5
6
7
8
|
<?php if (! empty($project['description'])): ?>
<div class="page-header">
<h2><?= $this->e($project['name']) ?></h2>
</div>
<article class="markdown">
<?= $this->text->markdown($project['description']) ?>
</article>
<?php endif ?>
|