permacomputing

Source repository for the main permacomputing wiki site
git clone http://git.permacomputing.net/repos/permacomputing.git # read-only access
Log | Files | Refs

commit 67a36ee2f7c62f8d9baf7771d66641d78f3d8a4b
parent c729207890c272b682d09ae5f21719ce3319ae35
Author: brendan <brendan@web>
Date:   Fri, 28 Mar 2025 15:26:07 +0100

new article

Diffstat:
Astatic_site_generator.mdwn | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/static_site_generator.mdwn b/static_site_generator.mdwn @@ -0,0 +1,10 @@ +A Satic Site Generator is a piece of software that takes some input - often simple text files or markdown files - and turns them into static HTML pages that can be served by most any web server. + +This has many advantages: + +1. You don't have to maintain and update any server software. +2. The site is more efficient as it does not require special processing on each page view. +3. There is less risk of "bit-rot" where the server software is unmaintained and the web site becomes inaccessible - something often seen on older blogs and web pages that used a CMS that reaches [[obsolescence]]. +4. The web site can continue to be readable years later as long as the HTML documents are still around. + +They also have some disadvantages, mostly in terms of editing and work-flows which might seem unconventional or awkward to users accustomed to more graphical or cloud-based workflows.