The real problem with any SSG is where to host and edit Markdown files and images for flexible spur of the moment content creation. I've built my own Wordpress-export-to-static solution to use the native iOS App as a workaround but it feels somewhat clunky — Same with having to run a headless CMS for this in the background; Surprisingly with all the gazillion of MD editors, no one has ever built one with live editing…
Creating a minimalist blog with Jekyll Now
61–70 of 94 posts
Re: Creating a minimalist blog with Jekyll Now
#62Earlier quoted context omitted.
I'd suggest you give Forestry ( https://forestry.io ) a try. It's a great CMS for static sites (incl. asset management) and it has a really nice preview system.
Tried since day one but it seems dead.
Re: Creating a minimalist blog with Jekyll Now
#63Earlier quoted context omitted.
> where to host and edit Markdown files and images for flexible spur of the moment content creation That, and somehow I don't like drafts to be on a public repo.
Nothing stopping you using a private repo. I use Netlify to host and have it automatically deploy when I merge to main, but my repo is private. I write my drafts in a branch and merge when I'm ready to publish.
Re: Creating a minimalist blog with Jekyll Now
#64Earlier quoted context omitted.
Personally I write to myself on telegram, then take it from there once I'm on a computer. Doing detail editing on a phone is painful anyway.
This makes me think, a Telegram-bot-as-a-CMS would work great for micro blogging.
We can even imagine an email-based microblogging hack. Edit your boop (that's the new tweet) in your favorite MUA: the subject is the short text, the body is the long text. You can even put images and attachements in there. Send yourself this message, with a well-known prefix: it ends up in a specific IMAP folder. Have your third-party server that pulls messages from this folder and displays them in a "nice" view, so that anyone can browse and subscribe. To reply to boops, just reply to it in your MUA along with a copy for yourself and it will be present in your "Timeline" and in theirs. To address someone, send them a copy.
In a perfect world you could anonymously authenticate to anyone's IMAP server and read that "boops" folder, and even subscribe to it if you want. But I don't think any existing provider will ever implement something like that.
Email and RSS have all the fundamental building blocks for so many usecases already, but we keep reinventing the wheel again and again. The abstractions work. Imagine every company had to reinvent the whole TCP/IP stack every single time.
Re: Creating a minimalist blog with Jekyll Now
#65Re: Creating a minimalist blog with Jekyll Now
#66What's wrong with hugo + self-hosted nginx on a VPS?
Re: Creating a minimalist blog with Jekyll Now
#67If I have just one piece of feedback here it would be: body { padding: 10px; } Changing nothing else but this would make the site 10x better. Even a Terminal window has 5+px of padding.
Re: Creating a minimalist blog with Jekyll Now
#68The real problem with any SSG is where to host and edit Markdown files and images for flexible spur of the moment content creation. I've built my own Wordpress-export-to-static solution to use the native iOS App as a workaround but it feels somewhat clunky — Same with having to run a headless CMS for this in the background; Surprisingly with all the gazillion of MD editors, no one has ever built one with live editing…
Re: Creating a minimalist blog with Jekyll Now
#69Earlier quoted context omitted.
This is my exact feeling. I have a Hugo-powered blog, but like you said, I miss the ability to draft something quickly when I'm inspired. Right now, the best option I have found is self-hosting Ghost with some aggressive Cloudflare caching. I considered using wp2static[0] before starting with Ghost. Have you published your exporter? [0] https://github.com/leonstafford/wp2static
Disclaimer: App Author If your Hugo blog is stored in Git, you could try out GitJournal [0][1]. It's a mobile based Markdown editor integrated with Git. Many people seem to use it for managing their Hugo/Jekyll blogs. [0] https://gitjournal.io [1] https://github.com/GitJournal
For example, when publishing new blog entry in my Eleventy site, I have to create a new folder, then create a markdown file in that folder with some specific frontmatter. Can I have GitJournal do that all for me?