From b72fc75422eedbd124f4557404804efd3ef78cfd Mon Sep 17 00:00:00 2001 From: onomanapeia Date: Tue, 20 Feb 2024 15:00:11 -0600 Subject: [PATCH] hopefully fixing more urls --- content/blog/first.md | 2 +- public/404.html | 1 + public/about/index.html | 1 + public/art/index.html | 1 + public/atom.xml | 29 ++ public/blog/first/index.html | 1 + public/blog/index.html | 1 + public/css/style.css | 356 +++++++++++++++++++++++++ public/elasticlunr.min.js | 10 + public/favicon.ico | Bin 0 -> 15406 bytes public/hyperfixations/idols/index.html | 1 + public/hyperfixations/index.html | 1 + public/hyperfixations/kpop/index.html | 1 + public/icons.svg | 21 ++ public/index.html | 1 + public/js/script.js | 21 ++ public/robots.txt | 4 + public/search_index.en.js | 1 + public/sitemap.xml | 28 ++ 19 files changed, 480 insertions(+), 1 deletion(-) create mode 100644 public/404.html create mode 100644 public/about/index.html create mode 100644 public/art/index.html create mode 100644 public/atom.xml create mode 100644 public/blog/first/index.html create mode 100644 public/blog/index.html create mode 100644 public/css/style.css create mode 100644 public/elasticlunr.min.js create mode 100644 public/favicon.ico create mode 100644 public/hyperfixations/idols/index.html create mode 100644 public/hyperfixations/index.html create mode 100644 public/hyperfixations/kpop/index.html create mode 100644 public/icons.svg create mode 100644 public/index.html create mode 100644 public/js/script.js create mode 100644 public/robots.txt create mode 100644 public/search_index.en.js create mode 100644 public/sitemap.xml 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();o?WH{HrFQEBzw&496K}JJy*}Yo6C@Z`~3Z0&ztS(>7MR&H}M~)s_S*X z<2&B_uJ^q+q0mvGd7%?e456GK`uWkJ&}TxS(ERz<_n9Y!LXV*C?6Vu~XM{qV-x~^@ zi9Q&D5mr5lz`t5Szq(d5`bs(N>~b!3M!jgfQZMSa`vKUK&!1c~GZ$7({SAy4cn;Qz z`u@hdsOGgRipA9X+~CwqV~y(PTbjnO69#Z*?Bi0KQex`^QL$;+nAq`HOk_vWq(?s0 zqH(}JzFN(G7<6V;d-xv-(R)K!gjXd*YGYE2ypRy9uM3OhhNK0qg0 zZ2wD4B-SQHF{O$A-$q1sI4$c^8&hgL%ihVN@n!q?{Fo*--aRHpUrdMy=x5vT%D9NH z9v5RTk4v6Z|9UBN8P@ij>RXkYFrGA%heARV>u!w*!W~|j5Yc~)H}Qk_MHusf8mG!) zN*4q7M@8>VVX+SUbKWXBU97t$A_{S>IlflR^jA%7A>d4KtU0bpeia;5a?Us>qkpyd zk@cp&uUga=aSb$W*NK3k6UXrLamlZ?EhRF$(jxlGxST)ouHaQoW3o_4Kue~7_Vp*v zoG;Gb_`0MhV@=iAM){f$P)FOZTGXEd+@>5j`ZvczPPy)DY(tx`LWp_bgX;;sfvlRw z9>A^g9pk0|e_sNr`(4iKKb3RO`M1_!C1r*44xD$RPT4k5 zEojSUi_bp3lFNM@yzgtlZ_!W$?wGTlGEvFvKeWS`$vfojsNK7B@2TgF&ja?)0B^*J z!}nY2p>ai}sDEi+x%>gZd`l1-CeR=2YeJ@{d~v9?2vVB*9_aE<{AfU*fjPx%rw#tW zZyvz=PCxvZ8=-GciO5UiVt7SdjKHQR`YfN|GxmV!>gu=-z~9l|Ci|13@7EFW>XoBy zPxsZM(ihQQyU_tTGX3Ts@x=3PV_8RktMC%nra!=kKM@mykH(}eS8Z#q4@UVtKicIo5^+_Gec?7f5({YM;c7{ixya>vA0^x+%!39AUd1= z)eD(lLXYz;eQk16Ef`{LS6IRwdM++uYFkrc`@=D@`Hz@`$76!HIi5a|ewwsyg|Bsm zY3jQXk4ZaOGqnp{``GZ)XA<7}-$Y>B7&lC>gPN1>t42kv$MU7cG-4g_&o;&fUhpfh z)$rBVd$p_j2z)eQG45i##&^mfW1_O5%Q%AgC=qS{%)-iueU1{?1hYt}QaTzhl4`EBnHJGb97&38!rW#fCTZ4DpS;4Om~ zlQ_3N2wq@&Hs3QQx~~}(WB;6{p_~DJ^kH1BU@^w)Su)!ER`ph?uTmO-`M<2Strb7p z80(Th$|B=A#$eQYHICoJPuWy;lnFlSyQMVs9)%zEJ6hTreB0~v?P)1rtA7=iww8Lp zc1g=i3E9T@o^d(r^HFR4?ek%Whxdb%lanV+R*X+O>fPxD%tUWe&O7-eF6txaSAA0- z6fF7$)>C&>owJ-UGnZBidY7}l(|0bS$$6(-^;|nD_W(oB#+!U|EO{qgoO|kL2Y4$O zANc8Chw*K&xyPW~k$37#r?J3$Ic1q=2=<9w&pzzac0L&wW7z9)UZ`{19*T<9*IKrozE9E#8L-o5dygt!y-M_5 zYwO>H!~HYuAouRvcdo%cocqWPuy>s6PV=MSf&a1>UR962L#qE_C=Uv;VxGd~R{F(X zv!V%cHDh}>ys8d+mrqC<5RV|v?C2MR(gHZ##}81~6`mkvwVHTm1@;l^)~1_&xS>a7 z@Nq%ONSxN?6Z87f0vbLD8cI%_;A;o=#K z{s{Z9+e)SI@ziD5lZD_diKiv^f%-$}>zijk9DG$XnGXTCK5bjteLLFMgT{xfb!l&J ztix2jpkIVF>gfOGl81agb~13k*opQTwV8Sr>v-Pb(1pIfzN7b=<|%{^d0B+=am?o~ z&}Zd*y<@6ojO51)<%(;G-2MvSxE^N=->4S~ADvCUv{H$l0AF+?^s(ZUTR(c{tR1<= ziDKq4p4ZG&e&9PVf$ScbGg|(~b>iH?zdkx+`V0E1|2OS6{CkC%w#Pwu!9MyW+xWn; z44W>`UwCfBoDa`*_+;_Ux{{{LT-8iqLpS~{2CbMX2<_}sDd>;R1PAHn{+PL2o?S7I z)x8+|C+yq!Ft4)q=7`L(FqfeZrg1*%Zd2Rvnnocg-Krnt|IRiz9b}k!X70a8C-=FX z9_9p@gWCC2TyX#9hX*<^qUZ`*!p|@EgUfd2MVTje(#w4<_mNx&?r-~+VsF{VCEELP zpUHLO`g!4lEcXVboBf!71J8GP!Bh2>oFT%0$Nqkawa+G9%)M;;b4=!3nfqlvx|oLS zBWJ+eF!KQ$?zHm2ijNJy8BBI8_-M6 zsiK4Dz3DB;-6C&c?`MB!evP@DVdOG;l&nFXwjl@Ua_%bOfS!ZU;Zc;AiG2R;PCgjd zR?O@I=3CJx(B2llL2Ow*J&%+TV~3S%XKst<_smN(2f@4x`6AsMM}DZgY*%Z?95r*r zc3$1y!AGoKFfL{c!+0YPevqqQ3VClo2kfA)%$F0Vlo`l6=_5Y!z+8&T-Ke#p4Pp*? z9D1(oP8qtx9G~jL{932AQ~Y2K4naOvn#trTlbP|;!Bbha1ugA5%iI(7k8`eae2OM# zNqMu+GwCH?s$U$r)F3oKPPl)#pi)Sl3w~Y?GREF#;7?JBllGE&N;|~7HR<5G@cf2r zQiAT%fALI5$qLs-+MLGvrg85==J+sn3(ggkjM?$IzL)fC>iN`1AUk8O?H=+&__P_M zm2%JXES_sH@65W5zaMKm7ry|vxjpRnJSdo4QXb2(qdq~2VUq305=GQj!fIU(t%9?%~soXp*F zZ75qj(^U0trJQTrZ4iw;HtssS8+UWIyY=;|8^XOC(m_8<`KB);ZIpek1JBWvow38< zxt*jR=N!DVrP@d{X(tc%^C#8rDEHKh+7Il00Q;&Xjy_G;ZuRQCjkN5-+Otm{KDPgM zORhM-lz02s3gm>gieq?Rj4_;Qr%jUd!_M-IQq{Yau$Kn!*(v&&$Hbc4=hoM&jyk-a zXJ?>=b4FiG8%h};d?Y609iFY($J6F09jBdTU)9e0U$jA7Kl|M&)$S;>^V0A4oCV>XRDpR#JZvr#(1@J4%dwpu3N|^$SwRIhN zcvfhK%~(Xmfs9RQ3+(M~@8DsGx#be#2jm!XZheB*$#@dyqAj#4nj0nMj6Rt6Dyb(5 zHrI#sibr+VLA868p#M-MuYC*m$Iiif^NyHTf4_R#O3o{72YnRxE^8nQ^wabQlnJ-k zjPxp>+>gF?+4I9$Gt-Of^*rN;xNqNvuFX|H>MY|P+EGj9U{84#8W@khANL*4W1bj$ z^&eqPJH|j@zqJ#%c#t)QKq@aqCMop*p&D9*FxSHD=}su-D-T$ z60y#hAHB|Y?CGBj3SY)Mh|M(EL*51A9WdUz=NeJA=wAcLiP!v_dL^jbD?X}b`jw#c zAAx?aai6GY3sTlf##2XtuAs71<~dLhx>cWQ$@q$!4L#C4K{gLSe{WE91uX~R)5rsS z+SAbGZSZ$>@Dq5CKN~(l^C94h1LrE-i@Kx|jh+ycZm)jy(foe};_mZdTbF~ry|baw zJ{GhhXQ^+;9qF!GKJ(Qi@@g~HS1-EV>KS(cXVCqoZ*B~*hKt!$+uad2+;de|uh-v& z_3gLMqx~Ii`w^et!aM=yw)tN#dmp}ob{x;9KYKXm+l%LFA#oP&Wu@&jfu1)&`zZgX zrS6n5Zb6@3>Y}|b^a?rS%=f+EAMSeUIAZUMKyw_laSxP(zAsb%m9yiYn9%s2twrE1 zjJ}kq5^VI%+`roU9qD(h`!U=DmCO1$rA+2@{$Ie02K1d*%jHg;EEwlb;{Slm-Fx+Y Mv;NH)I1)4PUrAtjJ^%m! literal 0 HcmV?d00001 diff --git a/public/hyperfixations/idols/index.html b/public/hyperfixations/idols/index.html new file mode 100644 index 0000000..f610324 --- /dev/null +++ b/public/hyperfixations/idols/index.html @@ -0,0 +1 @@ +japanese ๐Ÿ‡ฏ๐Ÿ‡ต 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/ + +