uuuh
Jekyll Build & Deploy / Jekyll-Build-and-Deploy (push) Successful in 13s Details

This commit is contained in:
Nekojimi 2024-10-24 21:33:09 +01:00
parent d67a7b207d
commit b3ba9f2c43
13 changed files with 48 additions and 17 deletions

View File

@ -3,6 +3,11 @@
destination: "./build" destination: "./build"
url: "www.nekojimi.moe" ## I don't care url: "www.nekojimi.moe" ## I don't care
include: [ "pages", "static/css" ] include: [ "pages", "static/css" ]
collections:
projects:
name: true
summary: true
output: true
## ## ## ##

View File

@ -3,11 +3,11 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{page.title}}</title> <title>{{page.title}}</title>
<link href="/static/css/style.css" rel="stylesheet" /> <link href="static/css/style.css" rel="stylesheet" />
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<pre class="title"> <pre class="title" aria-hidden="true" aria-label="Nekojimi">
<span class="la"> $$\ $$\ </span><span class="lb">$$\ </span><span class="lc"> $$\ </span><span class="ld"> $$\ </span> <span class="la"> $$\ $$\ </span><span class="lb">$$\ </span><span class="lc"> $$\ </span><span class="ld"> $$\ </span>
<span class="la"> $$$\ $$ | </span><span class="lb">$$ | </span><span class="lc"> \__|</span><span class="ld"> \__| </span> <span class="la"> $$$\ $$ | </span><span class="lb">$$ | </span><span class="lc"> \__|</span><span class="ld"> \__| </span>
<span class="la"> $$$$\ $$ | $$$$$$\ </span><span class="lb">$$ | $$\ $$$$$$\ </span><span class="lc"> $$\ $$\ </span><span class="ld">$$$$$$\$$$$\ $$\ </span> <span class="la"> $$$$\ $$ | $$$$$$\ </span><span class="lb">$$ | $$\ $$$$$$\ </span><span class="lc"> $$\ $$\ </span><span class="ld">$$$$$$\$$$$\ $$\ </span>

8
_projects/chords.md Normal file
View File

@ -0,0 +1,8 @@
---
name: Chords
summary: A Discord music bot supporting every website ever
code_url: https://fluff.nekojimi.moe/forgejo/Nekojimi/Chords
---
Chords is a music bot for Discord! I made it for my circle of friends, after all the ones we tried stopped working with Youtube.

View File

@ -1,16 +1,28 @@
--- ---
title: "Nekojimi's Awesome Webpage!!" title: "Nekojimi's Webpage!!"
permalink: "/" permalink: "/"
layout: "default" layout: "default"
--- ---
# it's me I'm kity # welcome to Nekojimi's official Web Area
Hi :3 My name is nekojimi and I'm a catboy :3 I like programming and cuddles! Hi :3 My name is Nekojimi and I'm a catboy :3
And this website is for showing off things I've made! And this website is for showing off things I've made!
here's some fun facts about me!~ Here's some fun facts about me!
- 🐈 I'm a cat!!
- 🧡 I'm pan <3 that means I like boys and girls and everything else
- 🏴 I'm also some kind of left-anarchist :D at least for the most part
- 💻 I tell computers what to do for a living but also for fun! i program in Java, C++, sometimes other stuff
# Projects
{% for project in site.projects %}
## {{ project.name }}
{{ project.summary }}
{% endfor %}
# Things
- i'm a cat!!
- i'm pan <3 that means I like boys and girls and everything else
- i'm also some kind of left-anarchist :D at least for the most part
- i tell computers what to do for a living but also for fun! i program in Java, C++, sometimes other stuff
-

View File

@ -1,5 +1,5 @@
--- ---
title:"Moe" title:"Moe"
permalink: "/moe/" permalink: "/moe/"
--- ---
!(moe)[http://2.bp.blogspot.com/-9pnn99BFytw/UjrKCe5EPLI/AAAAAAAANmg/51JddvfD32w/s1600/Los+Simpsons+Wallpapers+Gratis+-+%252884%2529.jpg] !(moe)[http://2.bp.blogspot.com/-9pnn99BFytw/UjrKCe5EPLI/AAAAAAAANmg/51JddvfD32w/s1600/Los+Simpsons+Wallpapers+Gratis+-+%252884%2529.jpg]

BIN
static/bgs/3px-tile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
static/bgs/black-thread.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 783 B

BIN
static/bgs/diagmonds.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
static/bgs/gplay.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
static/bgs/shley-tree-1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 KiB

BIN
static/bgs/stardust.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -13,6 +13,10 @@
body { body {
background-color: var(--color-background); background-color: var(--color-background);
background-image: url(../bgs/stardust.png);
background-attachment: fixed;
background-position: center;
/* background-size: cover; */
color: #eeeeee; color: #eeeeee;
font-family: monospace; font-family: monospace;
font-size: 24px; font-size: 24px;
@ -22,10 +26,12 @@ body {
} }
.content { .content {
background-color: var(--color-content-back); background-color: rgba( var(--color-content-back), 255);
/*width: 70%;*/ /*width: 70%;*/
/* opacity: 30%; */
padding: 16px; padding: 16px;
border-radius: 16px; border-radius: 16px;
backdrop-filter: blur(5px);
} }