30-Days-Of-Python/python_for_web/templates/about.html
2019-12-15 14:34:54 +02:00

9 lines
289 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div class="container">
<h1>About {{name}}</h1>
<p>This is a 30 days of python programming challenge. If you have been coding this far, you are awesome.
Congratulations
for the job well done!</p>
</div>
{% endblock %}