lynnespace/_layouts/project.html

16 lines
566 B
HTML
Raw Normal View History

2021-05-01 23:14:02 +10:00
---
layout: default
sidebar_title: Projects
2021-05-01 23:14:02 +10:00
---
<div class='subheading-links'>
2021-05-02 20:06:32 +10:00
{% if page.source %}<a href='{{ page.source }}'>Source code</a>{% endif %}
{% if page.website %}<a href='{{ page.website }}'>Website</a>{% endif %}
2021-05-01 23:14:02 +10:00
</div>
2024-08-28 12:44:41 +10:00
<div id="project-language">Written in {{ page.language }}</div>
2021-05-01 23:14:02 +10:00
<p>{{ page.description }}</p>
{{ content | rstrip | default: "There's nothing here yet." }}
2024-08-28 12:44:41 +10:00
{% if page.image %}
<img class="project-image" alt="A screenshot of {{ page.name }}." src="{{ page.image }}" />
{% endif %}
<a href="/projects.html">Back to all projects</a>