all repos — gemini-redirect @ 6f2c46156666d275e0a74c9324ae661968541ea6

templates/index.html (view raw)

 1{% extends "base.html" %}
 2
 3{% block content %}
 4<h1 class="title">BiRabittoh's Site</h1>
 5<p>Welcome to my personal website!</p>
 6
 7<p>I'll write about whatever comes to mind, mainly technology and art,
 8so that people can read it when I get famous in 80 years or so.</p>
 9
10<h2 id="about">About me</h2>
11<p>Italian male
12<span id="age"><noscript>born in 1998</noscript></span>.
13I've been programming
14<span id="programming"><noscript>since 2016</noscript></span>
15and I love it.</p>
16
17<p>I enjoy art in every form, including video-games, as well as
18every kind of humor. I usually hang around on Discord while
19programming stuff I'll probably never actually get finished.</p>
20
21<p>While Italian is my main language, I can read and write perfect
22English. I'm a fast learner on any kind of programming language as long
23as it follows human logic.</p>
24
25<p>The name BiRabittoh comes from the Japanese pronunciation of
26"B-Rabbit", as said in
27<i><a href="https://en.wikipedia.org/wiki/Pandora_Hearts">Pandora Hearts</a></i>,
28which was the first anime I watched on the internet.</p>
29
30<h2 id="projects">Project contributions</h2>
31<ul>
32<li>
33<a href="https://github.com/Render96/Render96ex">Render96ex</a>:
34working on the translation for this <i>Super Mario 64</i> port.
35</li>
36<li>
37<a href="https://github.com/nxengine/nxengine-evo">nxengine-evo</a>:
38fixing the italian translation for <i>Cave Story</i>.
39</li>
40
41<li>
42<a href="#">URhythm</a>:
43???
44</li>
45</ul>
46<p>If you're curious about my other projects, feel free to check out my
47<a href="https://github.com/Bi-Rabittoh">GitHub</a>.</p>
48
49<h2 id="contact">Contact</h2>
50<p>If you use Discord you can add me 
51(<a href="https://discordapp.com/users/132123740724002816/">Bi-Rabittoh#5566</a>)
52and chat about anything.</p>
53
54<p>You can also send me an email to
55<a href="mailto:andronacomarco@gmail.com">andronacomarco@gmail.com</a>
56and I will try to reply as soon as I can.</p>
57
58<script type="text/javascript">
59    now = (new Date()).getFullYear();
60    document.getElementById("age").innerHTML = "aged " + (now - 1998);
61    document.getElementById("programming").innerHTML = "for " + (now - 2016) + " years";
62</script>
63{% endblock %}