diff --git a/_config.yml b/_config.yml index fc2ce47..26451ee 100644 --- a/_config.yml +++ b/_config.yml @@ -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 ## ## diff --git a/_layouts/default.html b/_layouts/default.html index d04d19b..3efe5f6 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,11 +3,11 @@
+$$\ $$\ $$\ $$\ $$\ $$$\ $$ | $$ | \__| \__| $$$$\ $$ | $$$$$$\ $$ | $$\ $$$$$$\ $$\ $$\ $$$$$$\$$$$\ $$\ diff --git a/_projects/chords.md b/_projects/chords.md new file mode 100644 index 0000000..3d02fda --- /dev/null +++ b/_projects/chords.md @@ -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. + + diff --git a/pages/index.md b/pages/index.md index d9edc2c..4e7193a 100644 --- a/pages/index.md +++ b/pages/index.md @@ -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 - - + - ๐ 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 + + diff --git a/pages/moe.md b/pages/moe.md index 182cd8a..9246688 100644 --- a/pages/moe.md +++ b/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] diff --git a/static/bgs/3px-tile.png b/static/bgs/3px-tile.png new file mode 100644 index 0000000..8588147 Binary files /dev/null and b/static/bgs/3px-tile.png differ diff --git a/static/bgs/black-thread.png b/static/bgs/black-thread.png new file mode 100644 index 0000000..e125db6 Binary files /dev/null and b/static/bgs/black-thread.png differ diff --git a/static/bgs/diagmonds.png b/static/bgs/diagmonds.png new file mode 100644 index 0000000..ef4f956 Binary files /dev/null and b/static/bgs/diagmonds.png differ diff --git a/static/bgs/gplay.png b/static/bgs/gplay.png new file mode 100644 index 0000000..f985150 Binary files /dev/null and b/static/bgs/gplay.png differ diff --git a/static/bgs/shley-tree-1.png b/static/bgs/shley-tree-1.png new file mode 100644 index 0000000..a5ec6dd Binary files /dev/null and b/static/bgs/shley-tree-1.png differ diff --git a/static/bgs/stardust.png b/static/bgs/stardust.png new file mode 100644 index 0000000..d1ee1dc Binary files /dev/null and b/static/bgs/stardust.png differ diff --git a/static/bgs/white-diamond-dark.png b/static/bgs/white-diamond-dark.png new file mode 100644 index 0000000..8c1246e Binary files /dev/null and b/static/bgs/white-diamond-dark.png differ diff --git a/static/css/style.css b/static/css/style.css index 362887f..404a86b 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -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); }