layout: page
<div class=“center”>
<h1>{{ page.title }}</h1> {% if page.subtitle %} <p>{{ page.subtitle }}</p> {% endif %}
</div>
{% if page.status == “old” %} <div class=“alert alert-warning” role=“alert”>
This project is old and in a state of disrepair. It's been included for the sake of posterity, but the code and docs aren't up to my current standards. Feel free to poke around, but don't expect something polished (or even functional)!
</div> {% endif %}
{% if page.status == “wip” %} <div class=“alert alert-danger” role=“alert”>
This project is a work in progress. It's been included for the sake of completeness, but the code and docs aren't quite ready yet. Feel free to poke around, but don't expect something polished (or even functional)!
</div> {% endif %}
{% if page.repo or page.date %} <div class=“row justify-content-center”>
{% if page.created %} <div class="col-xl-4 col-lg-6 col-md-6"> <div class="bordered-box"> <span>Project Date</span> <h3><i class="fas fa-calendar"></i> {{ page.created }}</h3> </div> </div> {% endif %} {% if page.repo %} <div class="col-xl-4 col-lg-6 col-md-6"> <div class="bordered-box"> <h3><i class="fab fa-github"></i> View Source Code</h3> <span> <a target="_blank" href="https://github.com/{{ page.repo }}">{{ page.repo }}</a> </span> </div> </div> {% endif %} {% if page.demo %} <div class="col-xl-4 col-lg-6 col-md-6"> <div class="bordered-box"> <h3><i class="fas fa-laptop"></i> View Hosted Demo</h3> <span> <a target="_blank" href="{{ page.demo }}">{{ page.demo }}</a> </span> </div> </div> {% endif %}
</div> {% endif %}
{{ content }}