From 2fc6026356229c6cd6625ba6a3e18ceecfe2d3b0 Mon Sep 17 00:00:00 2001 From: TheTechRobo <52163910+TheTechRobo@users.noreply.github.com> Date: Wed, 21 Sep 2022 22:17:05 -0400 Subject: [PATCH] Init --- __pycache__/app.cpython-39.pyc | Bin 0 -> 328 bytes app.py | 7 ++++ templates/home.html | 72 +++++++++++++++++++++++++++++++++ templates/index.html | 52 ++++++++++++++++++++++++ 4 files changed, 131 insertions(+) create mode 100644 __pycache__/app.cpython-39.pyc create mode 100644 app.py create mode 100644 templates/home.html create mode 100644 templates/index.html diff --git a/__pycache__/app.cpython-39.pyc b/__pycache__/app.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e8905bd3aa258f34d87e13092789552bc139e3f GIT binary patch literal 328 zcmYjKyG{c!5cDIy97qwrK!tQ5#Xo=$6=fQzXe{Tv=puaa$=)b}Hhc(_d<6x6;g*V? zDi!OaAY<*UXEn2HXR~8Q`1!bKx75FiID{l|O_k1w9CO^WI|dxYj^9g=uM;QUxRY-3 z!f2wLx@ArEOgCQC|Y6~hK$^!}gw`&E?B^<^L2#={jSmCC3V^!P8gkx2yr literal 0 HcmV?d00001 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 %} + +