2021-07-29 08:59:09 -07:00
|
|
|
<ul class="p-0 list-none text-gray-700 text-sm">
|
2020-09-19 11:28:47 -07:00
|
|
|
<li>
|
|
|
|
<i class="fas fa-book text-center w-6 text-gray-500"></i>
|
|
|
|
{{ $topicCount := len (.module.CurrentSection.Pages) }}
|
2022-06-01 10:58:20 -07:00
|
|
|
{{ $topicCount }}
|
|
|
|
topic{{ if ne $topicCount 1 }}s{{ end }}
|
2020-09-19 11:28:47 -07:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
{{ $timeToComplete := 0 }}
|
|
|
|
{{ range .module.CurrentSection.Pages }}
|
|
|
|
{{ $timeToComplete = (add $timeToComplete .Params.estimated_time) }}
|
|
|
|
{{ end }}
|
|
|
|
<i class="fas fa-stopwatch text-center w-6 text-gray-500"></i>
|
|
|
|
About {{ $timeToComplete }} minutes
|
|
|
|
</li>
|
|
|
|
</ul>
|