2019-04-16 16:05:16 +00:00
|
|
|
{{ $currentVersion := (index (findRE "[^/]+.*?" .Page.RelPermalink) 0) }}
|
2019-02-11 16:07:11 +00:00
|
|
|
{{ $functionsPath := print "/" $currentVersion "/reference/flux/functions" }}
|
|
|
|
|
2019-02-11 21:26:13 +00:00
|
|
|
<ul>
|
|
|
|
{{ range where $.Site.RegularPages.ByTitle "Section" $currentVersion }}
|
|
|
|
{{ if in .Title "() function" }}
|
|
|
|
{{ $title := replaceRE `\ function` "" .Title }}
|
|
|
|
<li>
|
2019-04-16 16:05:16 +00:00
|
|
|
<a href="{{ .RelPermalink }}">{{ $title }}</a>
|
2019-02-11 21:26:13 +00:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|