Both RSS and Atom feeds?
Is this possible? Porting from Jekyll and need an ATOM feed and RSS feed said that it isn’t, but that was in 2015 so I’m hoping that something has changed since then. I’m assuming that I would put...
View ArticleBoth RSS and Atom feeds?
bobdc: Is this possible? Yes. Hugo has inbuilt support for RSS and Atom support can be added using a Hugo theme component (mine). Read full topic
View ArticleBoth RSS and Atom feeds?
3rd version is a JSON feed. I include my template here - you must(!) it change for your needs! { "version" : "https://jsonfeed.org/version/1", "title" : {{ .Site.Title | htmlUnescape | jsonify }},...
View ArticleBoth RSS and Atom feeds?
Thanks! I put your template in a layouts/feed.json file and your [outputFormats.JSON] section in my config.toml. After running just “hugo” I don’t see any new files in my public directory. Did I miss...
View ArticleBoth RSS and Atom feeds?
I also tried putting feed.json in layouts/_default. Read full topic
View ArticleBoth RSS and Atom feeds?
dont forget to config the output [outputs] home = [ "HTML", "RSS", "ATOM", "JSON"] I named it home.json.json, the _default folder is OK. Sometimes is it good to give hugo the -debug option. In the log...
View ArticleBoth RSS and Atom feeds?
It works great, but it’s not picking up the favicon. I’m not sure whether this is something I can address. My http://bobdc.com/favicon.ico image shows up in browser tabs when viewing my bobdc.com...
View ArticleBoth RSS and Atom feeds?
yes, you have to change {{ $icon := resources.Get "img/yy512.png" }}"icon" : "{{$icon.Permalink}}", {{ $favicon := resources.Get "img/yy64.png" }}"favicon" : "{{$favicon.Permalink}}", it looks for...
View ArticleBoth RSS and Atom feeds?
Thanks! But, I was actually replying to kaushalmodi about his hugo-atom-theme component and didn’t realize that the discussion software would put my comment under your last one. While my ultimate goal...
View ArticleBoth RSS and Atom feeds?
bobdc: But, I was actually replying to kaushalmodi about his hugo-atom-theme component Now I am confused The Atom theme component has nothing to do with favicons, at least it’s not yet encoding the...
View ArticleBoth RSS and Atom feeds?
yes, ATOM has no favicon, ATOM feeds can have a and element. There should be a png, jpg or gif picture. My response was to @bobdc part, the feed would not show any icon. Read full topic
View Article