diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -21,6 +21,26 @@ Tastefejl is a fork of the [Typo] Hugo theme, with the following changes: * Removed the copy buttons for code blocks because they could obscure the code and also behaved wrongly on horizontal scrolling. +* Fixed that individual blog posts didn't have `rel=alternate` links. `homeCollection` is now also linked as the RSS feed of the home page. + Tip: Hugo by default also generates an RSS entry for the home page disable this in `hugo.toml` with: + + ```toml + [outputs] + home = ['html'] + section = ['html'] + taxonomy = ['html'] + term = ['html'] + ``` + + And then reenable this in `content/posts/_index.md` for posts with: + + ``` + +++ + title = "Posts" + outputs = ["HTML", "RSS"] + +++ + ``` + * Removed [Simple Icons] because I don't want to plaster brands on my website and at one point a 50MB .html file was committed (I filtered the git history to reduce the size of the repository.) |