parent
4ceb3252b1
commit
5c5568963b
@ -0,0 +1,13 @@
|
||||
+++
|
||||
title = "about me"
|
||||
description = "the shrimp that fried this rice"
|
||||
template = "about-me.html"
|
||||
+++
|
||||
|
||||
I'm karx, a student from Texas, USA. I am a programmer, linux enthusiast, and a doctor who fan.
|
||||
|
||||
I became interested in technology through the FIRST Lego League competition, part of the FIRST organization which has had a huge impact on my life and my beliefs.
|
||||
|
||||
I believe in gracious professionalism, [the small web](https://ar.al/2020/08/07/what-is-the-small-web/). I believe technology and education should be open to anyone, anywhere.
|
||||
|
||||
These days I mainly code in Rust, although I have been using Java for use in the FIRST Tech Challenge. I also use a little bit of C++ for Arduino projects.
|
@ -1,6 +1,6 @@
|
||||
+++
|
||||
title = "List of blog posts"
|
||||
title = "my blog posts"
|
||||
sort_by = "date"
|
||||
template = "blog.html"
|
||||
page_template = "blog-page.html"
|
||||
+++
|
||||
+++
|
||||
|
@ -1,14 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHFBAABCgAvKBxZYXNoIEthcmFuZGlrYXIgPG5lcmRzdGVwNzEwQGdtYWlsLmNv
|
||||
bT4FAmGS7oUACgkQ8B6SzSOQ82lFrAv9Gcl/U8kKIIQNQG6Fiff+Uc2D/aGZTv4L
|
||||
cqjrJOoTczBLcvn4GvFi+vionowMYdr0lRR5g83sRUpDg7wKi5O2rGhOOhR0RCkN
|
||||
pGBtYx6k/+i02bMuO3IGQ+P0sk0QZzVQjduA1Crs44YLdiVpo0QTfnJRyP4lmWIs
|
||||
anUey+yTBI79stWmDdg3LE5fCsM+ctCmAfs3TKCbCuKG5LWQsOTcdMrdJFIlEXy+
|
||||
BAssT1GEyBwYRGHsR1sgeEPGPrdbpoR2HeFUzhMmWQb74ryyVpMTm46i4BD9/ivv
|
||||
n6/8gxIwz0k8oGdB5fnWAD1aMiJPdybiYxeC9vsE0PXylHOd9BCP7dcpvG3bmBSn
|
||||
JzD2wYJa7aaJk7PP64X/l5lBUrbzs7wpxqzr/e4/mq+9SJ3uKst1niJPCI5sebm8
|
||||
7f+TKFyzlrKoHgVyHZUc04NHD/05dyF9M3aB3ffCBWvzhKdILmONg9nNGt8zNkyE
|
||||
FQHq214glR57Rgn8IqfVNoU0D1NFU2J6
|
||||
=Ew8O
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,11 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="text-align-center">
|
||||
<h1 class="header">{% block title %}{{ section.title }}{% endblock title %}</h1>
|
||||
{{ section.description }}
|
||||
</div>
|
||||
|
||||
{{ section.content | safe }}
|
||||
|
||||
{% endblock content %}
|
Loading…
Reference in new issue