don't bother learning html and css, just use claude code and it'll get you a nice basic website, unless you're looking to code a hobby then go for your life
Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
-
No low-effort posts. This is subjective and will largely be determined by the community member reports.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
https://html5up.net/ if it is a single landing page. Just grab a template and edit its content to your liking.
Publii if it is some kind of blog or has a few subpages.
I would recommend learning basic HTML CSS and making a website without external tools. This way the maintenance cost is 0 as your website will likely work forever.
Write all your HTML first then your CSS, it will be easier this way. Use vanilla JS if you need to but avoid external libraries , same for php.
To add to this a bit, if the site is just a single page that will be fine. If your site has a bunch of pages that all need to share the same theme and headers and footers and such it may be worth learning a simple templating system that runs before the site is sent for hosting.
That way if you need to update something in the design or theme you can do it once, rather than on dozens of pages.
Personally I use eleventy for my little site.
You dont say what kind of website it is, just not blog or documentation style.
But SSGs can be skinned a bunch if different ways, and have been set up for a bunch of different purposes.
https://github.com/myles/awesome-static-generators
I have been using Zola for myself lately, its less blog post and more article oriented, but still doc heavy. I like the duckquill theme (with... More than a few changes, but still), which I doubt fits what you want. For comparison, here is duckquill: https://duckquill.daudix.one/
But you may like the Portio theme: https://quentin-rodriguez.github.io/portio-zola/
If you don't need to update often though, I think some basic html could be the way to go rather than using an ssg.
Publii is probably what you want. It's a GUI similar to WP/SquareSpace, but it spits out static pages.
Hugo or similar
The closest you're probably going to get to a half decent looking WYSIWYG editor is something templatized top to bottom. Odoo, Ghost...things like that.
You have several conflicting needs there. Why not just continue using Wordpress but without the weird extensions?
Because the extensions replaced wordpress' sitebuilder/editor. If I were to get rid of the extensions I would basically have to recreate the site anyways so I might as well switch away from wordpress.
You could try a Wordpress static generator extension like SimplyStatic. Then you’d be able to export your existing site to static files but it might not work properly with some extensions.
I want a static site of some kind. It’s simple to self host or host anywhere, and it’s also simple to secure and keep maintained for a long time.
I am currently looking at static site generators, like quarto, or docusaurus
However, they are difficult to theme to the “niceness” that I want, and their nature results in these somewhat fixed output formats. Like, it is somewhat difficult and annoying to put images anywhere I want them and etc.
Is there like a fixed WYSIWYG html editor? Something between designing a website from scratch and a static site generator.
Wordpress meets almost all of these requirements. It's not static pages, but if you don't use weird extensions it's perfectly simple, secure, maintainable, WYSIWYG, and it falls exactly between from-scratch and a static site generator. Plenty of themes you can use and tweak in a modular fashion.
Although I'm pretty sure there are extensions that'll render to static pages if you want. Certainly there are caching extensions that do almost the same thing.
Generally I'd recommend against Wordpress due to how shitty Automattic is being to the community, but it sounds like it fits your needs. Maybe Drupal as an alternatice.
Quarto and Docusaurus are for documentation. You may be looking for a more general static site generator like 11ty.
Build a website on your preferred platform, you're already using WP.
Create a static version of it. There's plugins for exactly that purpose.
Put the static files on a web host, I use s3, but you can use whichever you prefer.
When you update the site on WP, run the static extraction again and update your actual site.
To add to this, if you want to design your site using FOSS and locally on your own machine, I’ve had great success with Publii, but any static site generator will do.