13
I'm looking for a way to create webpages without HTML, any tips?
(lemmy.kde.social)
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.
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.