Personal Website - About
The About page is where you tell visitors who you are. It is one of the most visited pages on any personal website.
You already have the route in app.py and the nav in base.html. All you need to do is build about.html.
about.html
{% extends "base.html" %}
{% block content %}
<h1>About Me</h1>
<p>
My name is Grace. I am a developer in training, currently learning Python,
Flask, and web development.
</p>
<p>
I enjoy solving problems and building things that actually work. This site
is one of those things.
</p>
<h2>What I am learning</h2>
<ul>
<li>Python</li>
<li>Flask</li>
<li>HTML and CSS</li>
<li>Working with databases</li>
</ul>
{% endblock %}
Plain HTML inside the block. A heading, a couple of paragraphs, and a list. The nav at the top comes from base.html automatically - you do not write it here.
Challenge
Replace the content with your own. Write your real name, what you are studying, and two or three things you enjoy or are curious about. Then visit /about in your browser and see it live.
← Personal Website - Home Next: Personal Website - Contact →