diff --git a/README.md b/README.md index 2651e8e..f353961 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ googleAnalytics = "" # Enable Google Analytics by entering your tracking id toc = true # Enable Table of Contents for all site pages tocOpen = true # Open Table of Contents block. Optional comments = true # Enable comments for all site pages + related = true # Enable Related content for single pages mathjax = true # Enable MathJax for all site pages mathjaxPath = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" # Specify MathJax path. Optional mathjaxConfig = "TeX-AMS-MML_HTMLorMML" # Specify MathJax config. Optional diff --git a/layouts/partials/related.html b/layouts/partials/related.html index a17cc6f..b6c44b0 100644 --- a/layouts/partials/related.html +++ b/layouts/partials/related.html @@ -1,9 +1,9 @@ {{ $related := .Site.RegularPages.Related . | first 5 }} -{{ with $related }} +{{ if and ($related) (.Param "related") }}