Rebuild homepage with Flask

This commit is contained in:
2023-01-27 17:07:35 -06:00
parent e787189e14
commit 8d38af02c6
82 changed files with 438 additions and 46642 deletions

23
src/templates/home.html Normal file
View File

@@ -0,0 +1,23 @@
{% extends "header.html" %} {% block content %}
<div class="homeground">
<div class="relative">
<div class="flex">
<div id="HomeContent" data-aos="fade-up">
<h1>Andrew Simonson</h1>
<h3>Computer Science student at Rochester Institute of Technology</h3>
</div>
</div>
<div class="onRight" data-aos="fade-up">
<iframe
title="langstats"
src="{{ url_for('static', filename='readme-stats-vercel-01-25-2023.svg') }}"
class="langstats"
></iframe>
<div class="chess">
{% from 'partials/chess.html' import chess %}
{{ chess('asimonson1125') }}
</div>
</div>
</div>
</div>
{% endblock %}