micro-revamp number 3.1415

This commit is contained in:
Yash Karandikar 2023-03-10 21:34:45 -06:00
parent 4ceb3252b1
commit 5c5568963b
20 changed files with 84 additions and 46 deletions

View File

@ -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.

View File

@ -1,5 +1,5 @@
+++
title = "List of blog posts"
title = "my blog posts"
sort_by = "date"
template = "blog.html"
page_template = "blog-page.html"

View File

@ -1,5 +1,6 @@
+++
title = "How to manually update Discord on Arch Linux"
description = "must be your lucky day, there's a new update!"
date = "2022-10-26"
+++

View File

@ -1,5 +1,6 @@
+++
title = "2m2d: too much to do"
title = "2m2d"
description = "too much to do"
date = "2022-09-01"
+++

View File

@ -1,5 +1,5 @@
+++
title = "Yash's projects"
title = "my projects"
sort_by = "date"
template = "projects.html"
page_template = "project-page.html"

View File

@ -1,5 +1,6 @@
+++
title = "alliancepy: a TOA library"
title = "alliancepy"
description = "a TOA library"
date = "2020-04-20"
+++

View File

@ -1,5 +1,6 @@
+++
title = "arduino_cava: visualize audio on an Arduino using cava"
title = "arduino_cava"
description = "visualize audio on an Arduino using cava"
date = "2023-04-03"
+++

View File

@ -1,5 +1,6 @@
+++
title = "cat-box: game engine inspired by arcade"
title = "cat-box"
description = "game engine inspired by arcade"
date = "2022-06-24"
+++

View File

@ -1,5 +1,6 @@
+++
title = "dircord: A Discord-IRC bridge written in Rust."
title = "dircord"
description = "A Discord-IRC bridge written in Rust"
date = "2022-06-24"
+++

View File

@ -1,5 +1,6 @@
+++
title = "interplut: interpolated lookup table"
title = "interplut"
description = "interpolated lookup table"
date = "2023-02-20"
+++

View File

@ -1,5 +1,6 @@
+++
title = "wn2: WeeChat notification plugin"
title = "wn2"
description = "WeeChat notification plugin"
date = "2022-10-20"
+++

View File

@ -95,3 +95,15 @@ figcaption {
color: #777;
}
.text-align-center {
text-align: center;
}
.text-align-right {
text-align: right;
}
.header {
margin-bottom: 0;
}

View File

@ -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-----

11
templates/about-me.html Normal file
View File

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

View File

@ -20,8 +20,8 @@
{% block content %} {% endblock %}
<hr>
<div style="text-align: center">
<a href="/">home</a> - <a href="/projects/">projects</a> - <a href="/blog/">blog</a>
<br>built with <a href="https://www.getzola.org/">zola</a>
<a href="/">home</a> - <a href="/about-me">about me</a> - <a href="/projects/">projects</a> - <a href="/blog/">blog</a>
<br><a href="https://git.karx.xyz/karx/site">this site's source</a>
</div>
</div>
</section>

View File

@ -3,13 +3,16 @@
{% block title %}{{page.title}}{% endblock title %}
{% block content %}
<h1>
<div class="text-align-center">
<h1 class="header">
{{ page.title }}
</h1>
<p>
<strong>
{{ page.description }}
</div>
<p class="text-align-right">
<strong><i>
{{ page.date }}
</strong>
</i></strong>
</p>
{{ page.content | safe }}
<script src="https://utteranc.es/client.js"

View File

@ -3,9 +3,12 @@
{% block title %}{{section.title}}{% endblock title %}
{% block content %}
<h1>
<div class="text-align-center">
<h1 class="header">
{{ section.title }}
</h1>
things I write sometimes
</div>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>

View File

@ -1,14 +1,12 @@
{% extends "base.html" %}
{% block title %}Welcome to Yash's website!{% endblock title %}
{% block content %}
<h1 class="text-align-center">
Welcome to Yash's website!
<div class="text-align-center">
<h1 class="header">
{% block title %}Hi, I'm karx{% endblock title %}
</h1>
<p>
Hello there! My name is Yash Karandikar. I am a programmer and Linux enthusiast, as well as an avid Doctor Who fan.
</p>
programmer, linux enthusiast, avid Doctor Who fan.
</div>
<p>
Skills:
@ -23,8 +21,8 @@ Skills:
<p>
Stuff:
<ul>
<li><a href="ircs://karx.xyz:6697">IRC: karx.xyz/6697 (requires SSL)</a></li>
<li>E-mail: <a href="mailto:yash@karx.xyz">yash@karx.xyz</a> [<a href="/signature.asc">GPG Signature</a>]</li>
<li>IRC: <a href="ircs://karx.xyz:6697">karx.xyz/6697 (requires SSL)</a></li>
<li>E-mail: <a href="mailto:yash@karx.xyz">yash@karx.xyz</a></li>
</ul>
</p>
<p>

View File

@ -3,9 +3,10 @@
{% block title %}{{page.title}}{% endblock title %}
{% block content %}
<h1>
{{ page.title }}
</h1>
<div class="text-align-center">
<h1 class="header">{{ page.title }}</h1>
{{ page.description }}
</div>
<p>
<strong>
{{ page.date }}

View File

@ -3,12 +3,15 @@
{% block title %}{{section.title}}{% endblock title %}
{% block content %}
<h1>
<div class="text-align-center">
<h1 class="header">
{{ section.title }}
</h1>
things I make
</div>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
<li><a href="{{ page.permalink | safe }}">{{ page.title }}: {{ page.description }}</a></li>
{% endfor %}
</ul>
{% endblock content %}