29 lines
609 B
HTML
29 lines
609 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block styles %}
|
|
<link rel="stylesheet" href="/project_list.css">
|
|
{% endblock styles %}
|
|
|
|
{% block content %}
|
|
<section class="project-list content">
|
|
<h1>My Posts</h1>
|
|
{% for post in section.pages %}
|
|
<div class="project">
|
|
<a class="title" href="{{ post.permalink }}">
|
|
{{ post.title }}
|
|
</a>
|
|
<p class="description">
|
|
{% if post.description %}
|
|
{{ post.description }}
|
|
{% else %}
|
|
…
|
|
{% endif %}
|
|
</p>
|
|
<hr>
|
|
<p>{{ post.date }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock content %}
|
|
|