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