lynnespace/_layouts/project.html

16 lines
566 B
HTML
Raw Permalink Normal View History

2021-05-01 13:14:02 +00:00
---
layout: default
sidebar_title: Projects
2021-05-01 13:14:02 +00:00
---
<div class='subheading-links'>
2021-05-02 10:06:32 +00: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 13:14:02 +00:00
</div>
2024-08-28 02:44:41 +00:00
<div id="project-language">Written in {{ page.language }}</div>
2021-05-01 13:14:02 +00:00
<p>{{ page.description }}</p>
{{ content | rstrip | default: "There's nothing here yet." }}
2024-08-28 02:44:41 +00: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>