I need some help with subsections

i have a theme that has sections like this
content [ [ post- [ post1.md [ post2.md [course -[index.md [php-[index.md [ lesson1.md [news - [ index.md
no, I’m able to loop through the section where I get…

post

  • and its contents

course

  • and its contents

news

  • and its contents

my Query here is that i want to only select the course section and this is my code.

{{range .Sections}}
<div class="row">
 {{ template "recursive-course-carousel" . }}
</div>
{{end}}
{{end}}``

Try wrapping your code block within a {{ if eq .Section "course" }} condition.

hey this works but when i add the code before section range like this

    {{range .Sections}}
        {{ if eq .Section "course" }}
        <div class="row">
            {{ template "recursive-course-carousel" . }}
        </div>
        {{end}}
    {{end}}
{{end}}