My 60 yr old mother runs 2 small nonprofits, and is responsible for the web content and design. She's a pro with Word Perfect, but gets confused by simple HTML tags, and no interest, time, or aptitude to learn HTML/CSS/JavaScript. Last weekend, she asked for help with her website, and I was shocked to find out they still look like they're out of the late 90's. She does all of her editing with a 2006 copy of dreamweav…
Static Site Generators
41–50 of 123 posts
Re: Static Site Generators
#42(Note: I use Ultra Simple Site Maker for my own website, but I wouldn't recommend you do at the moment. It's not very flexible right now.)
Re: Static Site Generators
#43http://codecondo.com/7-static-site-generators-for-building-w...
only featured stuff that the majority of developers use.
Re: Static Site Generators
#44Is ther any CMS/blog/... type of thing that would create flat files, but keep all the content also in DB? That way search and comments (and especially moderation for comments) would be easier to handle, but still it would be easy on the server. For my own site I created something like this, https://github.com/Harri/Spage , but instead of DB, I used another set of flat files (serialized arrays containing the page cont…
Re: Static Site Generators
#45Static site generators seem like music databases, in that everyone eventually writes their own crappy one that just barely scratches the itch they had (and I'm no exception).
Re: Static Site Generators
#46Static site generators seem like music databases, in that everyone eventually writes their own crappy one that just barely scratches the itch they had (and I'm no exception).
Re: Static Site Generators
#47Re: Static Site Generators
#48Does anyone else use it?
Re: Static Site Generators
#49I've been wondering, with so many static site generators, isn't there one geared toward the "brochureware" market? I'm thinking of something that is very easy to use and maybe imposes rigid assumptions for non-technical people.
I suppose it wouldn't be to hard to use any of the existing static site generators and either 'repackage' them with specific assumptions, or write a module that implements them...
Re: Static Site Generators
#50Static site generators seem like music databases, in that everyone eventually writes their own crappy one that just barely scratches the itch they had (and I'm no exception).
Now that you mention it, building a static site generator would make a great learning exercise for a new programmer. Since they are a fairly common personal project, there are a lot of examples from which to examine.
Now I'd been building websites for a while, so I'd already gone organically through the whole 'hey let's use php to cut my pages up into reusable modules', 'I can automate this thing here', 'plugins are awesome!', and 'hey what's this MVC thing'.
But for people starting from less, a static site generator might be more explicit and less complex to learn with.
The mere fact that there's often a 'build' step that converts your stuff to plain html, javascript and css, I find, makes beginners feel like they understand things a little better.