Update Exploring Near Earth Objects project and add Meme Generator project

This commit is contained in:
2026-01-03 21:55:24 -08:00
parent 9a4c3f7854
commit 155f0c9c6d
36 changed files with 754 additions and 65 deletions

View File

@@ -0,0 +1,37 @@
<!doctype html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
body {
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
align-items: center;
width: 100%;
background: #F5FCFE;
}
.nav {
display: inline;
padding: 60px;
}
img {
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
}
</style>
</head>
<body>
{% block body %}{% endblock %}
<div class="nav">
<a class="btn btn-primary" href="{{url_for('meme_rand')}}">Random</a>
<a class="btn btn-outline-primary" href="{{url_for('meme_form')}}">Creator</a>
</div>
</body>
</html>