this post was submitted on 22 Feb 2024
13 points (100.0% liked)
Programming
13368 readers
1 users here now
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
What about a WYSIWYG editor app like Dreamweaver? I don't know if there's any good free ones any more though, now that FrontPage Express is gone.
Otherwise, a headless CMS with a nice editor could work too. Something like WordPress except it outputs static HTML rather than doing it dynamically
Ever heard of wix or squarespace? I think there is your reason these apps don’t exist anymore.
Those platforms aren't ideal because you're locked in to the respective service. Something standalone (or even a CMS like WordPress) is good since you're not locked in - you can move to a different hosting provider, self-host it, more easily migrate to a different platform, etc.
We've always had similar platforms - in the 2000s we had Geocities, Angelfire, Tripod, etc. There's still a lot of value in actually owning your site.
Note that Wix is under boycott because it uses coercion against its employees to get them to publicly side with Israel
So weirdly enough, I posted about this earlier today in a different community. My use-case is different to OP's, so I don't think any of the options I'm investigating now would suit them, but the long and short of it is free, standalone WYSIWYG editors are really few and far between now.
Yeah I think headless CMSes are where it's at these days. A 'headless' CMS is one where editing and presentation are split into two parts, as opposed to it being used for editing and presentation (which is what traditional CMSes like WordPress, Joomla, CMSMS, etc do).
Usually you use the CMS to edit the site, but it just produces plain HTML so you don't need the CMS to serve the live site. The CMS could publish to a static file host like S3, Github Pages, etc.
There are even some that integrate into WordPress, meaning you use the WordPress admin section to write posts, but they then output plain HTML. Basically WordPress but without any potential security concerns since your users aren't actually hitting the WordPress server.
Having said that... 40%+ of the internet is powered by regular WordPress, so it's not going away any time soon.