Leave a message! Remember to never say anything hurtful on the internet <3
Page 1 of 1 (8 messages)
[1]
#8
Millan June 26, 2026 at 12:14:38 PM
Website: https://milichu.neocities.org

Love the new github pages site but it is sad to see you leave neocities, best of luck in your escapades!

#7
Anonymous April 10, 2026 at 12:43:51 PM

Why did you make another GitHub account out of curiosity? You've made a lot of progress when it comes to exploring all of these SSGs and now even React, pretty cool I wonder if you have anymore plans for your neocities domain

#6
Jia-Rou April 9, 2026 at 5:43:20 PM
Website: jiaroustille.github.io/

NEW URL

#5
Jia-Rou April 9, 2026 at 5:42:31 PM
Website: https://jiaroustille.github.io/

Some self promo... :cool: up-to date site ->

#4
Jia-Rou March 29, 2026 at 6:15:52 PM

Remake my site again or not? Found this awesome ssg called quartz hehe

#3
Jia-Rou March 25, 2026 at 8:42:16 AM

So many IDEAS... # JSsg - Java Script Static Site Generator ## Idea - markdown - html templates - front matter - templates - should handle nested tempaltes - handle for loops - handle if statements - build pipeline: what steps, how many? whats a step and whats a helper? when is what? - Routing and predictable paths - Handling collections - configuration system: config.js - developer server ### Example this markdown: ```yaml --- title: Hello World published: 2026-03-25 description: A greeting to the world. category: Test author: Jia-Rou --- Here is some content, this is separate from front matter. ``` plus this structure: ```js const title = `frontmatter.title site.title` site.title; const published = frontmatter.published "no fallback yet"; const description = frontmatter.description site.description; const category = frontmatter.category null; const author = frontmatter.author site.author; const body = frontmatter.body; const slug = slugify(title); const permalink = `'/', ${slugify(category)}, '/', ${slugify(title)}, '/'`; const url = `${site.domain}, '/', ${permalink}` ``` with markdown to html conversion implemented should output this data: ```json { "title": "Hello World", "published": 2026-03-25, "description": "A greeting to the world.", "category": "Test", "author": "Jia-Rou", "body": "Here is some content, this is separate from front matter.", "html": "<p>Here is some content, this is separate from front matter.</p>", "slug": "hello-world", "permalink": "/test/hello-world", "url": "https://example.com/test/hello-world" } ``` then with adding this template: ```html <html> <head> <title>{{page.title}}</title> </head> <body> <a href="{{page.url}}"><h1>{{page.title}}</h1></a> <time>{{page.published}}</time> <p>{{page.description}}</p> <p>{{page.category}}</p> <p>{{page.author}}</p> <main>{{content}}</main> </body> </html> ``` it becomes the final page of ```html <html> <head> <title>Hello World</title> </head> <body> <a href="https://example.com/test/hello-world"><h1>Hello World</h1></a> <time>2026-03-25</time> <p>A greeting to the world.</p> <p>Test</p> <p>Jia-Rou</p> <main> <p>Here is some content, this is separate from front matter.</p> </main> </body> </html> ``` It should also handle category, to make this possible: ```html <ul> {{ for entry in category.test }} <li><a href="{{page.permalink}}">{{page.title}}</a></li> {{ endfor }} </ul> ``` ## Configuration It should use the site's configuration as constants instead of set values. ```json { "Title": "JSsg Site", "Description": "A small static site generator made in JavaScript.", "Author": "Jia-Rou", "Domain": "https://example.com", "input": "input/content/", "static": "input/static/", "output": "output/", "templates": "templates/", } ```

#2
Millan March 24, 2026 at 10:10:02 AM
Website: https://milichu.neocities.org

I like checking in on this site :3 I'm excited to read more of ur novel and blog posts, but make sure not to overwork yourself <3 You have a wonderful day too

#1
Jia-Rou March 23, 2026 at 7:07:27 PM

Hiii:lol: I have been busy lately and haven't updated my Neocities. Well... Not busy, but more so prioritizing other stuff. I recently started making my own static site generator at GitHub I hope anyone reading this will have a wonderful day, Jia-Rou out~