70 lines
1.9 KiB
HTML
70 lines
1.9 KiB
HTML
---
|
|
title: "Nekojimi's Webpage!!"
|
|
permalink: "/"
|
|
layout: "main"
|
|
---
|
|
|
|
<div class="section">
|
|
<div class="intro-box">
|
|
<img src="static/catboy.png" class="catboy-img">
|
|
<div>
|
|
<h1>Welcome to Nekojimi's official Web Area</h1>
|
|
|
|
<p>Hi :3 My name is Nekojimi and I'm a catboy :3
|
|
And this website is for showing off things I've made!
|
|
Here's some fun facts about me!
|
|
</p>
|
|
|
|
<ul style="list-style:inside">
|
|
<li>🐈 I'm a cat!!</li>
|
|
<li>🧡 I'm pan <3 that means I like boys and girls and everything else</li>
|
|
<li>🏴 I'm also some kind of left-anarchist :D at least for the most part</li>
|
|
<li>💻 I tell computers what to do for a living but also for fun! i program in Java, C++, sometimes other stuff</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="section">
|
|
<h1>Links</h1>
|
|
<!-- 🐘🔨🦋📨🐙 -->
|
|
<a href="https://mastodon.nekojimi.moe/@Nekojimi">[ 🐘 Mastodon ]</a>
|
|
<a href="https://t.me/Nekojimi">[ 🛫 Telegram ]</a>
|
|
<a href="https://fluff.nekojimi.moe/forgejo/">[ 🔨 Forgejo ]</a>
|
|
<a href="https://bsky.app/profile/nekojimi.moe">[ 🦋 Bluesky ]</a>
|
|
<a href="https://github.com/jimj316">[ 🐙 Github ]</a>
|
|
</div>
|
|
|
|
|
|
<div class="section">
|
|
<h1>Projects</h1>
|
|
{% for project in site.projects %}
|
|
<!-- -->
|
|
<div class="project-entry {% if project.nsfw %} nsfw {% endif %}" >
|
|
<div class="project-txt">
|
|
<a href="{{ project.url }}"><h2>{{ project.name }}</h2></a>
|
|
{% if project.summary %}
|
|
<p>{{ project.summary }}</p>
|
|
{% else %}
|
|
<p>{{ project.excerpt }}</p>
|
|
{% endif %}
|
|
</div>
|
|
<img class="project-img" src="/static/project-img/{{project.img_url}}"></img>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
<div class="section">
|
|
<h1>Things</h1>
|
|
{% for page in site.pages %}
|
|
<div class="page-entry">
|
|
<a href="{{ page.url }}"><h2>{{ page.title }}</h2></a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
|