mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-20 14:00:09 -06:00
18 lines
520 B
Plaintext
18 lines
520 B
Plaintext
<#import "/templates/guide.adoc" as template>
|
|
<#import "/templates/options.adoc" as opts>
|
|
|
|
<@template.guide
|
|
title="All configuration"
|
|
summary="Review build options and configuration for {project_name}.">
|
|
|
|
<#list ctx.options.categories as category>
|
|
<#assign categoryOptions=ctx.options.getValues(category)>
|
|
<#if categoryOptions?has_content>
|
|
[#category-${category.name()?lower_case}]
|
|
== ${category.heading}
|
|
|
|
<@opts.list options=categoryOptions categoryName=category.name()></@opts.list>
|
|
</#if>
|
|
</#list>
|
|
</@template.guide>
|