Add listings

This commit is contained in:
Michael Hartl
2022-11-13 10:39:28 -08:00
parent 9aa36bfadb
commit 256ad44d08
199 changed files with 1834 additions and 657 deletions
+19
View File
@@ -0,0 +1,19 @@
{% extends "layout.html" %}
{% block content %}
<h1>Palindrome Result</h1>
{% if is_palindrome %}
<div class="result result-success">
<p>"{{ phrase }}" is a palindrome!</p>
</div>
{% else %}
<div class="result result-fail">
<p>"{{ phrase }}" isn't a palindrome.</p>
</div>
{% endif %}
<h2>Try another one!</h2>
{% include "palindrome_form.html" %}
{% endblock %}