Show HN: Bearclaw – tiny static site generator with RSS
11–20 of 25 posts
Re: Show HN: Bearclaw – tiny static site generator with RSS
#12Re: Show HN: Bearclaw – tiny static site generator with RSS
#13I got really frustrated with Hugo yesterday when I couldn't add a page with just a list of all my posts on it. I spent a few hours playing around with a bunch of different options, Hexo seemed to come the closest to something I could fire up and just drop my existing markdown in (though it did blow up on a youtube embedded player I had in one post). Bearclaw does look super simple to get going, but seemed to be missi…
Re: Show HN: Bearclaw – tiny static site generator with RSS
#14bearclaw.blog redirects back to source repo[0] on GitHub.
Should not it be a redirect to GitHub Pages site?
Re: Show HN: Bearclaw – tiny static site generator with RSS
#15I got really frustrated with Hugo yesterday when I couldn't add a page with just a list of all my posts on it. I spent a few hours playing around with a bunch of different options, Hexo seemed to come the closest to something I could fire up and just drop my existing markdown in (though it did blow up on a youtube embedded player I had in one post). Bearclaw does look super simple to get going, but seemed to be missi…
I know you weren't asking for solutions but I'm surprised to hear this. That should not only be trivial but is something that ships by default when you init your site. For example this should be enough on your list page:
{{ range .Pages }}
{{ .Title }}
{{ end }}
Re: Show HN: Bearclaw – tiny static site generator with RSS
#16I do feel rather old when I see 3 megabytes described as tiny, though ;)
Re: Show HN: Bearclaw – tiny static site generator with RSS
#17I'm definitely going to have a look at this. I was just comparing hugo, soupalt, jekyll and zola for a tiny geocities-ish blog site, and will add that to the list. I do feel rather old when I see 3 megabytes described as tiny, though ;)
Re: Show HN: Bearclaw – tiny static site generator with RSS
#18I got really frustrated with Hugo yesterday when I couldn't add a page with just a list of all my posts on it. I spent a few hours playing around with a bunch of different options, Hexo seemed to come the closest to something I could fire up and just drop my existing markdown in (though it did blow up on a youtube embedded player I had in one post). Bearclaw does look super simple to get going, but seemed to be missi…
> I got really frustrated with Hugo yesterday when I couldn't add a page with just a list of all my posts on it. I know you weren't asking for solutions but I'm surprised to hear this. That should not only be trivial but is something that ships by default when you init your site. For example this should be enough on your list page: {{ range .Pages }} {{ .Title }} {{ end }}
I tried to do the same not that long ago (was just starting to toy around with Hugo) and could not find an easy solution to it.
Re: Show HN: Bearclaw – tiny static site generator with RSS
#19Earlier quoted context omitted.
> I got really frustrated with Hugo yesterday when I couldn't add a page with just a list of all my posts on it. I know you weren't asking for solutions but I'm surprised to hear this. That should not only be trivial but is something that ships by default when you init your site. For example this should be enough on your list page: {{ range .Pages }} {{ .Title }} {{ end }}
I took it to mean not a list of post _titles_, but a full output of posts on a single page (a la DaringFireball). I tried to do the same not that long ago (was just starting to toy around with Hugo) and could not find an easy solution to it.
Re: Show HN: Bearclaw – tiny static site generator with RSS
#20I got really frustrated with Hugo yesterday when I couldn't add a page with just a list of all my posts on it. I spent a few hours playing around with a bunch of different options, Hexo seemed to come the closest to something I could fire up and just drop my existing markdown in (though it did blow up on a youtube embedded player I had in one post). Bearclaw does look super simple to get going, but seemed to be missi…
> I got really frustrated with Hugo yesterday when I couldn't add a page with just a list of all my posts on it. I know you weren't asking for solutions but I'm surprised to hear this. That should not only be trivial but is something that ships by default when you init your site. For example this should be enough on your list page: {{ range .Pages }} {{ .Title }} {{ end }}
I created this 3-4 years ago, hacked on it some to get it where it is, which I tried not to be too crazy. But maybe I just munged it up somehow. Maybe I just need to start over again with the latest Hugo and get brained up. Hugo has nice documentation, but it fairly quickly goes from "put a few markdown pages here and run hugo" to "read the rest of the book". Which is probably just the nature of the beast.