This commit is contained in:
TheTechRobo 2022-09-21 22:17:05 -04:00
commit 2fc6026356
4 changed files with 131 additions and 0 deletions

Binary file not shown.

7
app.py Normal file
View File

@ -0,0 +1,7 @@
from flask import *
app = Flask(__name__)
@app.route("/")
async def start():
return render_template("home.html")

72
templates/home.html Normal file
View File

@ -0,0 +1,72 @@
{% extends "index.html" %}
{% block title %} Hello World! {% endblock %}
{% block content %}
<h1>Hi.</h1>
<p>I kinda suck at making UIs from scratch, so that's why this website looks terrible.</p>
<p>(I could use Wordpress or something, but that's boring.) :P</p>
<p>I'm currently not available for job offers. I might do stuff I'm interested in pro bono, though!</p>
<div id="about">
<h2>About</h2>
Coming soon
</div>
<div id="quali">
<h2>What I can do</h2>
<ul>
<li>Python 3</li>
<li>RethinkDB</li>
<li>Basic SQL</li>
<li>Rust (intermediate)</li>
<li>Scrape the Web</li>
</ul>
</div>
<div id="projects">
<h2>Projects</h2>
<p>Here are some of my projects.</p>
<h3><a href="https://findyoutubevideo.thetechrobo.ca">YouTube Video Finder</a></h3>
<p>A website that helps you find lost youtube videos</p>
<h3><a href="https://github.com/TheTechRobo/discord-urls-extractor">Discord URL extractor</a></h3>
<p>Extracts links from Discord server dumps</p>
</div>
<div id="wipprojects">
<h2>Work-in-progress projects</h2>
<h3>IntelliPhone</h3>
<p></p>
<h3>Geometry Dash Archival Scripts</h3>
<p>Archiving Geometry Dash</p>
<h3>thirteenhundred</h3>
<p>Renaissance Receiver driver for Linux</p>
</div>
<div id="hiyaprojects">
<h2>Projects on hiatus</h2>
<h3><a href="https://github.com/TheTechRobo/python-text-calculator">Palc</a></h3>
<p>A Python-based calculator
<h3><a href="https://github.com/TheTechRobo/openclassroom">openclassroom</a></h3>
<p>Open-source classroom suite</p>
</div>
<div id="goneprojects">
<h2>Dead projects (aka "permanent hiatus")</h2>
<p>Can't think of any important ones</p>
</div>
</div>
{% endblock %}

52
templates/index.html Normal file
View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Ubuntu, sans-serif;
}
h1 {
text-align: center;
}
html {
margin-left: 20%;
margin-right: 20%;
}
div:target > h2 {
background-color: yellow;
}
.relativebox1 {
display:inline;position:relative;min-width: 320px;min-height:320px;
}
.relativebox1 img {
width: 320px;
height: 320px;
margin: 0;
}
.relativebox1 p {
margin: 0;
}
.relativebox1 h3 {
color: lightgrey;
position: absolute;
bottom: 0;
margin-bottom: 3px;
left: 0;
opacity: 0.4;
background-color: #000;
width: 100%;
}
.mr {
margin-right: 4%;
}
</style>
<title> {% block title %} {% endblock %}</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>