Hacker News new | ask | show | jobs
by RistrettoMike 1215 days ago
I ran into the exact same issues as the author of this post the other day. I have a static site built on Hugo that I (amateurishly) set up a year or so ago, and would like it to have better support for photos & galleries, but lack the time + skill to implement that.

I spent a late-night research session a few weeks back running through many of the main options they mention only to settle on the conclusion that there wasn't something that had the compromise of features, simplicity, and price that I was looking for.

I didn't check out write.as when I was looking into things though, so maybe that'll be my next failed experiment.

2 comments

It would be pretty easy to make your own photo gallery in raw html. have photos in a directory you want to link on your server. pick your favorite language, write some code to iterate through that list of files, and generate html pages for each containing the image, a previous hyperlink to go to the page for the last item iterated, and a next hyperlink to go to the next page. Throw in some button graphics and now its as sexy as any other static site generator, and you can now throw the entire codebase on github and put it on your resume and call yourself a webdev. get fancy, make a cron job that looks for new content added to that directory and runs your html generator, now all you do is drag and drop files and the site builds itself.
I came across an editor once where u can drop an image and it will put it in some directory and insert some markdown to link it. That seems like it would be a good choice for a static blog, although I didn’t try it (some Mac OS software from a year or two ago).