website/templates/home.html

73 lines
1.7 KiB
HTML

{% 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 %}