trimill.xyz/flaskr/templates/index.html

56 lines
3.1 KiB
HTML
Raw Normal View History

2022-12-18 19:47:43 +00:00
{% set meta = {"title": "trimill", "desc": "Home page"} %}
2022-06-23 05:58:54 +00:00
{% extends "/_base.html" %}
{% block content %}
2023-02-22 22:12:52 +00:00
<h2>About</h2>
2022-06-23 05:58:54 +00:00
<p>
2023-09-23 03:52:34 +00:00
I am a person (proof of this fact is left to the reader) who has been granted an internet connection and uses
it extensively for assorted purposes. I enjoy many things, most of which involve manipulating some state
according to various sets of rules.
2022-06-23 05:58:54 +00:00
</p>
2023-02-22 22:12:52 +00:00
<h2>Projects</h2>
<ul>
2023-09-23 03:52:34 +00:00
<li><a href="https://cx.trimill.xyz">CXGraph</a> - Graph complex functions online, but better than before</li>
<li><a href="projects/zzcxz_vis">zzcxz visualizer</a> - Force-directed graph of <a href="https://zzcxz.citrons.xyz/">zzcxz</a> using D3.js</li>
<li><a href="https://g.trimill.xyz/trimill/complexpr">complexpr</a> - A toy programming language with an interpreter written in Rust</li>
<li><a href="https://g.trimill.xyz/trimill/Quectocraft">Quectocraft</a> - An ultra-minimalist implementation of a Minecraft server in Rust and Lua</li>
<li><a href="https://g.trimill.xyz/trimill/rss-bundler">RSS Bundler</a> - Bundle multiple RSS feeds into one</li>
2023-02-22 22:12:52 +00:00
</ul>
2022-06-23 05:58:54 +00:00
<p>
2023-09-23 03:52:34 +00:00
See more on the <a href="projects">projects page</a> and on <a href="https://g.trimill.xyz/trimill">my Forgejo instance</a>.
2022-06-23 05:58:54 +00:00
</p>
2023-02-22 22:12:52 +00:00
<h2>Contact</h2>
2022-06-23 05:58:54 +00:00
<p>
2023-09-23 03:52:34 +00:00
Email: <a href="mailto:trimill@trimillxyz.org">trimill@trimillxyz.org</a> <br>
Discord: trimill#6898 <br>
2023-09-23 03:40:47 +00:00
Matrix: @trimill:matrix.org <br>
2023-09-23 03:52:34 +00:00
Forgejo: <a href="https://g.trimill.xyz/">trimill</a> <br>
GitHub: <a href="https://github.com/TriMill/">trimill</a> <br>
Youtube: <a href="https://www.youtube.com/@trimill012">trimill</a> <br>
2022-06-23 05:58:54 +00:00
</p>
2023-02-22 22:12:52 +00:00
{% endblock %}
{% block footer_content %}
2022-06-23 05:58:54 +00:00
{% if theme == "light" %}
2022-08-08 03:22:55 +00:00
<iframe height="50" src="https://george.gh0.pw/embed.cgi?trimill&c_bg=%23f6f5f2&c_fg=%2328262b&c_links=%230642c3&c_george=%230d8101&c_underline=%230d8101" style="border:none;width:100%;" sandbox="allow-top-navigation"></iframe>
2022-06-23 05:58:54 +00:00
{% elif theme == "special" %}
2022-08-08 03:22:55 +00:00
<iframe height="50" src="https://george.gh0.pw/embed.cgi?trimill&c_bg=%23ffff00&c_fg=%23ff00ff&c_links=%2300ffff&c_george=%2300ff00&c_underline=%2300ff00" style="border:none;width:100%;" sandbox="allow-top-navigation"></iframe>
2022-06-23 05:58:54 +00:00
{% elif theme == "system" %}
2023-02-22 22:17:00 +00:00
<iframe height="50" class="only-theme-dark" src="https://george.gh0.pw/embed.cgi?trimill&c_bg=%23131720&c_fg=%23e6ded6&c_links=%232aca98&c_george=%23268d78&c_underline=%23268d78" style="border:none;width:100%;" sandbox="allow-top-navigation"></iframe>
2022-08-08 03:22:55 +00:00
<iframe height="50" class="only-theme-light" src="https://george.gh0.pw/embed.cgi?trimill&c_bg=%23f6f5f2&c_fg=%2328262b&c_links=%230642c3&c_george=%230d8101&c_underline=%230d8101" style="border:none;width:100%;" sandbox="allow-top-navigation"></iframe>
2022-06-23 05:58:54 +00:00
{% else %}
2023-02-22 22:17:57 +00:00
<iframe height="50" src="https://george.gh0.pw/embed.cgi?trimill&c_bg=%23131720&c_fg=%23e6ded6&c_links=%232aca98&c_george=%23268d78&c_underline=%23268d78" style="border:none;width:100%;" sandbox="allow-top-navigation"></iframe>
2022-06-23 05:58:54 +00:00
{% endif %}
2022-08-04 17:21:39 +00:00
<p>
<iframe src="https://john.citrons.xyz/embed?ref=trimill.xyz" style="margin-left:auto;display:block;margin-right:auto;max-width:732px;width:100%;height:94px;border:none;"></iframe>
</p>
2023-02-28 04:33:56 +00:00
<br>
2022-08-04 17:21:39 +00:00
2022-09-14 18:25:12 +00:00
{% endblock %}