22 lines
473 B
HTML
22 lines
473 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<section class="project-list content">
|
|
<h1>My Projects</h1>
|
|
{% for project in section.pages %}
|
|
<a href="{{ project.permalink }}">
|
|
<div class="description">
|
|
<div class="title">{{ project.title }}</div>
|
|
<p>
|
|
{% if project.description %}
|
|
{{ project.description }}
|
|
{% else %}
|
|
…
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock content %}
|