nekoweb tools
Published on Nov 5, 2025
nekoweb specific/stuff made specifically for nekoweb
- fullscreen editor: https://userstyles.world/style/14951/nekoweb-full-screen-code-editor
- sitebox preview: https://github.com/fl0werpowers/nekoweb-sitebox-preview
- nekoweb deploy from github: https://github.com/mp-pinheiro/nekoweb-deploy
- cool search engine for nekoweb: https://search.nekoweb.org/
- https://ourheroisasandwich.nekoweb.org/contents/box-generator (Now style the site-box + the RSS feed post box with this)
Social:
- NekoCafe - a status.cafe clone for Nekowebbers. Here’s the widget!
- NekoForum - a forum like the good ‘ol days.
- Districts - place that sorts Nekoweb sites into various categories. If you’d like your site to be listed, follow these instructions.
- Nekolink - an ad system similar to Navlink, exclusively for nekowebbers. Follow the instructions on the homepage to join!
- Nekowebring - a webring exclusively for nekowebbers. If you’d like to join, follow these instructions.
Just For Fun
-
Custom Themes for Nekoweb - using the Stylus extension, you can customize how Nekoweb’s main page and dashboard look for you.
Nekoweb now has SSI (Server-Side Includes) support!
You can use SSI to include html within other html files, create reusable layouts, render markdown files, create dynamic blogs, galleries and more without having to use static site generators!
For example include this in your HTML file to import other HTML file:
<!--# include file="./header.html" -->Or create a /layout.html:
<html>
<head>
<title>My Site</title>
</head>
<body>
<h1>My Website</h1>
<!--# block name="content" --><!--# endblock -->
<footer>Copyright 2024</footer>
</body>
</html>And then use that layout in other html files:
<!--# layout file="/layout.html" -->
<!--# block name="content" -->
<h2>About Me</h2>
<p>This is my about page.</p>
<!--# endblock -->There’s also directives to render Markdown, listing files, and more. You can now dynamically create blog listings, blog pages, gallery pages, and more. We also added a special file called _catchall.html that allows to catch all requests in folder that didn’t match any file. This is so you can dynamically create pages like https://example.nekoweb.org/blog/my-cool-post that would render my-cool-post.md using render directive.
include, layout and block directives are available to everyone for free! Only render, list and error ones require Neko tier.
Learn more here: https://nekoweb.org/ssi