diff --git a/content/blog/first.md b/content/blog/first.md index e1b4d2a..a202587 100644 --- a/content/blog/first.md +++ b/content/blog/first.md @@ -1,6 +1,6 @@ +++ title = "My first post" -date = "2024/20/2" +date = "2024-02-20" +++ This is my first blog post. \ No newline at end of file diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..9634e57 --- /dev/null +++ b/public/404.html @@ -0,0 +1 @@ +404 Not Found

404 Not Found

\ No newline at end of file diff --git a/public/about/index.html b/public/about/index.html new file mode 100644 index 0000000..dfeefa4 --- /dev/null +++ b/public/about/index.html @@ -0,0 +1 @@ +about mana

about mana

\ No newline at end of file diff --git a/public/art/index.html b/public/art/index.html new file mode 100644 index 0000000..0c96168 --- /dev/null +++ b/public/art/index.html @@ -0,0 +1 @@ +art

art

i will post some art here eventually, wonโ€™t that be fun?

\ No newline at end of file diff --git a/public/atom.xml b/public/atom.xml new file mode 100644 index 0000000..65b30b9 --- /dev/null +++ b/public/atom.xml @@ -0,0 +1,29 @@ + + + + + + Zola + 2024-02-20T00:00:00+00:00 + https://peachmoon.moe/atom.xml + + My first post + 2024-02-20T00:00:00+00:00 + 2024-02-20T00:00:00+00:00 + + + + + mana + + + + + + https://peachmoon.moe/blog/first/ + + <p>This is my first blog post.</p> + + + + diff --git a/public/blog/first/index.html b/public/blog/first/index.html new file mode 100644 index 0000000..9cdcd18 --- /dev/null +++ b/public/blog/first/index.html @@ -0,0 +1 @@ +My first post
../

My first post

This is my first blog post.

\ No newline at end of file diff --git a/public/blog/index.html b/public/blog/index.html new file mode 100644 index 0000000..29d28fc --- /dev/null +++ b/public/blog/index.html @@ -0,0 +1 @@ +momolog

momolog

aaaa

\ No newline at end of file diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..73dfc70 --- /dev/null +++ b/public/css/style.css @@ -0,0 +1,356 @@ +:root, +:root.light { + --bgColor: #EEEEEE; + --fgColor: #41474E; + --metaColor: #D26878; + --headColor: #; + --linkColor: #5690AF; + --hovColor: #22453F; + --bgSelect: #FFFAE1; + --bgUrl: url(https://i.ibb.co/Qpkrw4V/tile-Light.webp) repeat; + --red: #D26878; + --dimRed: #623039; + --orange: #e08f67; + --dimOrange: #926048; + --yellow: #FFFAE1; + --dimYellow: #D5C5A1; + --green: #56AFA0; + --dimGreen: #22453F; + --blue: #5690AF; + --dimBlue: #223844; + --purple: #9271D6; + --dimPurple: #47356C; + --grey: #CBCDCD; + --dimGrey: #646868 +} + +:root.dark { + --bgColor: #222529; + --fgColor: #D6D6D6; + --metaColor: #78B6AD; + --headColor: #; + --linkColor: #DBD5BC; + --hovColor: #E2AEA2; + --bgSelect: #464949; + --bgUrl: url(https://i.ibb.co/LzrFBFJ/tileDark.webp) repeat; + --red: #CD909B; + --dimRed: #684249; + --orange: #E2AEA2; + --dimOrange: #704941; + --yellow: #DBD5BC; + --dimYellow: #6F6847; + --green: #78B6AD; + --dimGreen: #3E615C; + --blue: #87C9E5; + --dimBlue: #38494F; + --purple: #CEA7DE; + --dimPurple: #5E406A; + --grey: #CBCDCD; + --dimGrey: #464949 +} + +::-moz-selection { + color: var(--bgColor); + background: var(--metaColor) +} + +::selection { + color: var(--bgColor); + background: var(--metaColor) +} + +html { + -webkit-box-sizing: border-box; + box-sizing: border-box; + font-size: 62.5%; + scrollbar-color: var(--metaColor) var(--bgColor); + scrollbar-width: thin; +} + +body { + font-family: monospace; + font-size: 1.6rem; + line-height: 1.35; + max-width: 64rem; + margin: auto; + overflow-wrap: break-word; + background: var(--bgColor); + color: var(--fgColor); +} + +h1 { + font-size: 2.4rem; + color: var(--bgColor); + background-color: var(--metaColor); + text-align: center; + text-wrap: balance; +} + +h1::before { + color: var(--bgColor); + content: 'โ™ก ' +} +h1::after { + color: var(--bgColor); + content: ' โ™ก ' +} + +h2::before, +h3::before, +h4::before, +h5::before, +h6::before { + color: var(--metaColor); + content: 'โ™ก ' +} + +a { + text-decoration: none; + padding: 0 .2rem 0 .2rem; + border-radius: .3rem; + color: var(--linkColor); +} + +a:focus, +a:hover { + background-color: var(--linkColor); + color: var(--bgColor) +} + +ul { + list-style: none; + margin-top: .5rem; + margin-bottom: .5rem; +} + +li { + margin-bottom: .25rem; +} + +ul li::marker { + content: 'ยป '; + color: var(--metaColor) +} + +ul li:hover::marker { + content: 'โ™ก '; + font-weight: 700; + color: var(--linkColor) +} + +blockquote { + border-left: .5rem solid var(--metaColor); + margin: 1rem; + padding: 0 0 0 1rem +} + +textarea { + border: 2px dotted; + outline: 0; + resize: none; + overflow: auto; + background-color: var(--bgColor) +} + +hr { + border: 1px dashed +} + +img { + max-width: 90%; + height: auto; + margin: .2rem; + padding: .2rem; + border: dashed .2rem var(--metaColor); + border-radius: 15px +} + +pre { + border: 1px solid var(--metaColor); + padding: 1rem; + overflow-x: auto; + font-style: monospace; + white-space: pre-wrap; + word-break: break-word; +} + +p code, +li code, +div code { + padding: 0 .2rem 0 .2rem; + border-radius: .3rem; + color: var(--bgColor); + background-color: var(--fgColor); +} + +pre code { + padding: 0; + border-radius: 0; + color: inherit; + background-color: inherit; +} + +iframe { + max-width: 90%; +} + +table { + table-layout: fixed; + width: 100%; + border-collapse: collapse; + border: none; + margin-left: auto; + margin-right: auto; + margin-bottom: 1rem; + line-height: 1.1 +} + +thead th:first-child { + width: 20% +} + +th { + font-weight: 400 +} + +td, +th { + padding: .5rem; + border: dashed .1rem var(--metaColor) +} + +footer { + font-size: 1.4rem; + clear: both; + color: var(--footColor) +} + +footer, +td, +th { + text-align: left +} + +.metaData, +.themeButton, +hr, +textarea { + color: var(--metaColor) +} + +/* Site Specific Styling */ +.wrapper { + min-height: 100vh; + min-height: 100svh; + display: grid; + grid-template-rows: auto 1fr auto; + gap: 2rem; + +} + +/* Icons settings */ +.icons { + width: 2.0rem; + height: 2.0rem; + aspect-ratio: 1/1; + display: inline-block; + vertical-align: middle; + color: var(--fgColor); + fill: var(--fgColor); + background-color: transparent; +} + +.icons__background:hover { + background-color: transparent; + color: var(--metaColor); +} + +.navBar { + padding: 1rem 0 0 0; + display: flex; + flex-direction: row; + gap: .4rem; + flex-wrap: wrap; + justify-content: flex-end; + align-items: center; + align-content: flex-end +} + +.themeButton { + cursor: pointer; + border: none; + font-size: 1.8rem; + background-color: transparent +} + +.dark .themeButton.dark, +.themeButton.light { + display: none +} + +.dark .themeButton.light { + display: block +} + +.tagsData { + display: flex; + flex-direction: column; + flex-wrap: wrap; + justify-content: flex-end; + align-items: flex-start; + align-content: flex-end +} + +.titleList li { + margin-bottom: .75rem; +} + +.footnote-definition { + margin: 0 0 0 2rem; +} + +.footnote-definition-label { + color: var(--metaColor); +} + +.footnote-definition p { + display: inline; + padding: 0 0 0 1rem; +} + +.footContainer { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-items: center; +} + +.noStyle { + padding: 0; + margin: 0; + border: none; + border-radius: 0 +} + +.textCenter { + text-align: center; +} + +.floatRight { + float: right +} + +.floatLeft { + float: left +} + +.webring { + margin: 0.5rem; +} + +/* Add Padding */ +@media (max-width: 650px) { + .wrapper { + margin: 1rem; + } +} \ No newline at end of file diff --git a/public/elasticlunr.min.js b/public/elasticlunr.min.js new file mode 100644 index 0000000..79dad65 --- /dev/null +++ b/public/elasticlunr.min.js @@ -0,0 +1,10 @@ +/** + * elasticlunr - http://weixsong.github.io + * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.6 + * + * Copyright (C) 2017 Oliver Nightingale + * Copyright (C) 2017 Wei Song + * MIT Licensed + * @license + */ +!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();ojapanese ๐Ÿ‡ฏ๐Ÿ‡ต idols

japanese ๐Ÿ‡ฏ๐Ÿ‡ต idols

Table of contents

oshimen

  • amaki sally
    [22/7]

  • MOAMETAL (aka kikuchi moa)
    [BABYMETAL; former sakura gakuin, twinklestars]

  • pippi (aka DJ Mimi-chan)
    [electric ribbon, strawberry kick]

  • younapi (aka DJ younaP!)
    [gekijouban gokigen teikoku, heppokoz; former youโ€™ll melt more!]

  • matsuda miri
    [the world standard/wa-suta]

  • kobato ria
    [dempagumi.inc, chape no izumi from dempagumi.inc; former ENGAG.ING]

  • yayoi
    [MEWM; former uijin]

  • hakuu coai (aka coai, togaren)
    [yakousei amuse, GILTYร—GILTY, HEROINES;
    former PEDIOPHOBIA, zenbu kimi no sei da.]

  • amano maria
    [SUPERBABYS; former ENGAG.ING]

  • minase piano (aka shiraishi piano, nagasawa piano)
    [nonยฌfiction, HEROINES; former FESโ˜†TIVE, KATAโ˜†CHU]

โ†‘

graduated & soloist oshimen (active)

  • nonayu (aka nayuta aku, nonamera)
    [former frun frin friends, KAQRIYOTERROR, avandoned]

  • yabuki nako
    [former HKT48, IZ*ONE]

  • terashima yufu
    [former BiS, simpฮฑtix]

  • nikoshama (aka fuwa akane, toyotomi karin, ogawa anju)
    [former seireki13ya, THE BANANA MONKEYS, sakura cinderella]

  • koizumi karen
    [former bonbon ange, starโ˜†fiorenerd, artemis no tsubasa]

  • fukumura mizuki
    [former morning musume. 9th generation]

  • michishige sayumi
    [former morning musume. 6th generation]

  • konno asami
    [former morning musume. 5th generation]

  • yaguchi mari
    [former morning musume. 2nd generation]

  • mogeki aza
    [former zenbu kimi no sei da.]

  • kotetsu
    [former zenbu kimi no sei da., yukueshirezutsurezure, KAQRIYOTERROR]

  • katase narumi
    [former notall]

โ†‘

oshiloss (retired/no longer active)

โ†‘

idol groups Iโ€™m enjoying lately

โ†‘

idol groups I used to enjoy or have lost interest in


โ†‘ top
โ†ฉ back

\ No newline at end of file diff --git a/public/hyperfixations/index.html b/public/hyperfixations/index.html new file mode 100644 index 0000000..2c587fd --- /dev/null +++ b/public/hyperfixations/index.html @@ -0,0 +1 @@ +hyperfixations

hyperfixations

hereโ€™s some stuff I hyperfixate on:

\ No newline at end of file diff --git a/public/hyperfixations/kpop/index.html b/public/hyperfixations/kpop/index.html new file mode 100644 index 0000000..3f54ec9 --- /dev/null +++ b/public/hyperfixations/kpop/index.html @@ -0,0 +1 @@ +korean ๐Ÿ‡ฐ๐Ÿ‡ท idols

korean ๐Ÿ‡ฐ๐Ÿ‡ท idols

Table of contents

biases

โ†‘

soloists

โ†‘

kpop groups Iโ€™m enjoying lately

โ†‘

disbanded & inactive groups I miss ๐Ÿ˜ญ

  • loona
    [blockberry creative u did my girls dirty]

  • milk tea
    [nothing new in over 10 years ๐Ÿฅฒ]

โ†‘

kpop groups Iโ€™m losing interest in

โ†‘

k-indie


โ†‘ top
โ†ฉ back

\ No newline at end of file diff --git a/public/icons.svg b/public/icons.svg new file mode 100644 index 0000000..374e315 --- /dev/null +++ b/public/icons.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..5af6376 --- /dev/null +++ b/public/index.html @@ -0,0 +1 @@ +๐Ÿ‘๐ŸŒ™

peachmoon.moe

hallo, Iโ€™m mana (aka momo), and welcome to my internet home. I am a smol peach fairy living inside of your computer.

if youโ€™d like to read more about me you can do that.

otherwise, I write my thoughts here in my blog.

if you want to see the stuff Iโ€™m really interested in, might I suggest looking into my hyperfixations?

or maybe youโ€™re more of an art appreciator?

if you want to find me elsewhere, thatโ€™s also a thing you can do.

\ No newline at end of file diff --git a/public/js/script.js b/public/js/script.js new file mode 100644 index 0000000..205d215 --- /dev/null +++ b/public/js/script.js @@ -0,0 +1,21 @@ +const setTheme = (theme) => { + document.documentElement.className = theme; + localStorage.setItem('theme', theme); +} + +const hasCodeRun = localStorage.getItem('hasCodeRun'); + +if (!hasCodeRun) { + const defaultTheme = "{{ config.extra.default_theme }}"; + setTheme(defaultTheme); + localStorage.setItem('hasCodeRun', 'true'); +} + +const getTheme = () => { + const theme = localStorage.getItem('theme'); + if (theme) { + setTheme(theme); + } +} + +getTheme(); \ No newline at end of file diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..bee4b05 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: +Allow: / +Sitemap: https://peachmoon.moe/sitemap.xml diff --git a/public/search_index.en.js b/public/search_index.en.js new file mode 100644 index 0000000..7fb2613 --- /dev/null +++ b/public/search_index.en.js @@ -0,0 +1 @@ +window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{"https://peachmoon.moe/blog/":{"tf":1.0}},"df":1}}},"k":{"docs":{},"df":0,"a":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.0},"https://peachmoon.moe/art/":{"tf":1.4142135623730951}},"df":2}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://peachmoon.moe/":{"tf":1.0},"https://peachmoon.moe/blog/first/":{"tf":1.0}},"df":2}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"https://peachmoon.moe/art/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/blog/first/":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{"https://peachmoon.moe/art/":{"tf":1.0}},"df":1}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://peachmoon.moe/":{"tf":1.0},"https://peachmoon.moe/art/":{"tf":1.0}},"df":2,"โ€™":{"docs":{"https://peachmoon.moe/hyperfixations/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://peachmoon.moe/":{"tf":1.0},"https://peachmoon.moe/hyperfixations/":{"tf":1.4142135623730951}},"df":2}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://peachmoon.moe/hyperfixations/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}},"โ€™":{"docs":{},"df":0,"m":{"docs":{"https://peachmoon.moe/":{"tf":1.4142135623730951}},"df":1}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"https://peachmoon.moe/hyperfixations/":{"tf":1.0}},"df":1}}}}}}},"k":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://peachmoon.moe/hyperfixations/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"m":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{"https://peachmoon.moe/":{"tf":1.0},"https://peachmoon.moe/about/":{"tf":1.0}},"df":2}},"y":{"docs":{},"df":0,"b":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://peachmoon.moe/blog/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://peachmoon.moe/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/art/":{"tf":1.0},"https://peachmoon.moe/blog/first/":{"tf":1.4142135623730951}},"df":2}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"https://peachmoon.moe/":{"tf":1.0},"https://peachmoon.moe/hyperfixations/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"โ€™":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"โ€™":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/art/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"โ€™":{"docs":{},"df":0,"d":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1},"r":{"docs":{"https://peachmoon.moe/":{"tf":1.0}},"df":1}}}}}}},"title":{"root":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/art/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/blog/first/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://peachmoon.moe/hyperfixations/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{"https://peachmoon.moe/about/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://peachmoon.moe/blog/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://peachmoon.moe/blog/first/":{"tf":1.0}},"df":1}}}}}}},"documentStore":{"save":true,"docs":{"https://peachmoon.moe/":{"body":"peachmoon.moe\nhallo, Iโ€™m mana (aka momo), and welcome to my internet home. I am a smol peach fairy living inside of your computer.\nif youโ€™d like to read more about me you can do that.\notherwise, I write my thoughts here in my blog.\nif you want to see the stuff Iโ€™m really interested in, might I suggest looking into my hyperfixations?\nor maybe youโ€™re more of an art appreciator?\nif you want to find me elsewhere, thatโ€™s also a thing you can do.\n\n๐ŸŒ™ on fedi\n๐ŸŒ™ retrospring\n๐ŸŒ™ libre.fm\n๐ŸŒ™ anilist\n๐ŸŒ™ discord: smolmomos\n\n","id":"https://peachmoon.moe/","title":"๐Ÿ‘๐ŸŒ™"},"https://peachmoon.moe/about/":{"body":"\n","id":"https://peachmoon.moe/about/","title":"about mana"},"https://peachmoon.moe/art/":{"body":"\ni will post some art here eventually, wonโ€™t that be fun?\n","id":"https://peachmoon.moe/art/","title":"art"},"https://peachmoon.moe/blog/":{"body":"aaaa\n","id":"https://peachmoon.moe/blog/","title":"momolog"},"https://peachmoon.moe/blog/first/":{"body":"This is my first blog post.\n","id":"https://peachmoon.moe/blog/first/","title":"My first post"},"https://peachmoon.moe/hyperfixations/":{"body":"hereโ€™s some stuff I hyperfixate on:\n\n๐Ÿ‡ฏ๐Ÿ‡ต japanese idols\n๐Ÿ‡ฐ๐Ÿ‡ท kpop idols\n\n","id":"https://peachmoon.moe/hyperfixations/","title":"hyperfixations"}},"docInfo":{"https://peachmoon.moe/":{"body":48,"title":0},"https://peachmoon.moe/about/":{"body":0,"title":1},"https://peachmoon.moe/art/":{"body":6,"title":1},"https://peachmoon.moe/blog/":{"body":1,"title":1},"https://peachmoon.moe/blog/first/":{"body":3,"title":2},"https://peachmoon.moe/hyperfixations/":{"body":7,"title":1}},"length":6},"lang":"English"}; \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..173bfca --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,28 @@ + + + + https://peachmoon.moe/ + + + https://peachmoon.moe/about/ + + + https://peachmoon.moe/art/ + + + https://peachmoon.moe/blog/ + + + https://peachmoon.moe/blog/first/ + 2024-02-20 + + + https://peachmoon.moe/hyperfixations/ + + + https://peachmoon.moe/hyperfixations/idols/ + + + https://peachmoon.moe/hyperfixations/kpop/ + +