commit 2fc6026356229c6cd6625ba6a3e18ceecfe2d3b0 Author: TheTechRobo <52163910+TheTechRobo@users.noreply.github.com> Date: Wed Sep 21 22:17:05 2022 -0400 Init diff --git a/__pycache__/app.cpython-39.pyc b/__pycache__/app.cpython-39.pyc new file mode 100644 index 0000000..1e8905b Binary files /dev/null and b/__pycache__/app.cpython-39.pyc differ diff --git a/app.py b/app.py new file mode 100644 index 0000000..6ed6313 --- /dev/null +++ b/app.py @@ -0,0 +1,7 @@ +from flask import * + +app = Flask(__name__) + +@app.route("/") +async def start(): + return render_template("home.html") diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..d9ec1bf --- /dev/null +++ b/templates/home.html @@ -0,0 +1,72 @@ +{% extends "index.html" %} + +{% block title %} Hello World! {% endblock %} + +{% block content %} +

Hi.

+

I kinda suck at making UIs from scratch, so that's why this website looks terrible.

+

(I could use Wordpress or something, but that's boring.) :P

+ +

I'm currently not available for job offers. I might do stuff I'm interested in pro bono, though!

+ +
+

About

+ Coming soon +
+ +
+

What I can do

+ +
+ +
+

Projects

+

Here are some of my projects.

+ +

YouTube Video Finder

+

A website that helps you find lost youtube videos

+ +

Discord URL extractor

+

Extracts links from Discord server dumps

+ +
+ +
+

Work-in-progress projects

+ +

IntelliPhone

+

+ +

Geometry Dash Archival Scripts

+

Archiving Geometry Dash

+ +

thirteenhundred

+

Renaissance Receiver driver for Linux

+ +
+ +
+

Projects on hiatus

+ +

Palc

+

A Python-based calculator + +

openclassroom

+

Open-source classroom suite

+
+ +
+

Dead projects (aka "permanent hiatus")

+ +

Can't think of any important ones

+
+ + + +{% endblock %} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..21463a0 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,52 @@ + + + + + {% block title %} {% endblock %} + + + {% block content %} + {% endblock %} + +