uuuh
Jekyll Build & Deploy / Jekyll-Build-and-Deploy (push) Successful in 13s
Details
|
@ -3,6 +3,11 @@
|
|||
destination: "./build"
|
||||
url: "www.nekojimi.moe" ## I don't care
|
||||
include: [ "pages", "static/css" ]
|
||||
collections:
|
||||
projects:
|
||||
name: true
|
||||
summary: true
|
||||
output: true
|
||||
|
||||
|
||||
## ##
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{page.title}}</title>
|
||||
<link href="/static/css/style.css" rel="stylesheet" />
|
||||
<link href="static/css/style.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
@ -1,16 +1,28 @@
|
|||
---
|
||||
title: "Nekojimi's Awesome Webpage!!"
|
||||
title: "Nekojimi's Webpage!!"
|
||||
permalink: "/"
|
||||
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!
|
||||
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
|
||||
-
|
||||
|
|
10
pages/moe.md
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title:"Moe"
|
||||
permalink: "/moe/"
|
||||
---
|
||||
!(moe)[http://2.bp.blogspot.com/-9pnn99BFytw/UjrKCe5EPLI/AAAAAAAANmg/51JddvfD32w/s1600/Los+Simpsons+Wallpapers+Gratis+-+%252884%2529.jpg]
|
||||
---
|
||||
title:"Moe"
|
||||
permalink: "/moe/"
|
||||
---
|
||||
!(moe)[http://2.bp.blogspot.com/-9pnn99BFytw/UjrKCe5EPLI/AAAAAAAANmg/51JddvfD32w/s1600/Los+Simpsons+Wallpapers+Gratis+-+%252884%2529.jpg]
|
||||
|
|
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 783 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 299 KiB |
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 8.2 KiB |
|
@ -13,6 +13,10 @@
|
|||
|
||||
body {
|
||||
background-color: var(--color-background);
|
||||
background-image: url(../bgs/stardust.png);
|
||||
background-attachment: fixed;
|
||||
background-position: center;
|
||||
/* background-size: cover; */
|
||||
color: #eeeeee;
|
||||
font-family: monospace;
|
||||
font-size: 24px;
|
||||
|
@ -22,10 +26,12 @@ body {
|
|||
}
|
||||
|
||||
.content {
|
||||
background-color: var(--color-content-back);
|
||||
background-color: rgba( var(--color-content-back), 255);
|
||||
/*width: 70%;*/
|
||||
/* opacity: 30%; */
|
||||
padding: 16px;
|
||||
border-radius: 16px;
|
||||
backdrop-filter: blur(5px);
|
||||
|
||||
}
|
||||
|
||||
|
|