mirror of
https://github.com/Vimux/Binario.git
synced 2024-11-11 01:38:28 +00:00
Add relatedMax param
Added possibility to set the maximum number of posts that can be displayed in related block
This commit is contained in:
parent
4fae038bc5
commit
7f3f0ece7c
2 changed files with 4 additions and 1 deletions
|
@ -99,6 +99,7 @@ googleAnalytics = "" # Enable Google Analytics by entering your tracking id
|
|||
tocOpen = true # Open Table of Contents block. Optional
|
||||
comments = true # Enable comments for all site pages
|
||||
related = true # Enable Related content for single pages
|
||||
relatedMax = 5 # Set the maximum number of posts that can be displayed in related block. Optional
|
||||
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
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{{ $related := .Site.RegularPages.Related . | first 5 }}
|
||||
{{ $relatedMax := .Site.Params.relatedMax | default 5 }}
|
||||
{{ $related := .Site.RegularPages.Related . | first $relatedMax }}
|
||||
|
||||
{{ if and ($related) (.Param "related") }}
|
||||
<div class="related block">
|
||||
<h3 class="related__title">{{ T "related_title" }}</h3>
|
||||
|
|
Loading…
Reference in a new issue