Last active
May 11, 2016 14:11
-
-
Save gedankennebel/9d8fef6e2fcde60e8c872ca201434c13 to your computer and use it in GitHub Desktop.
Render the current data model keys that are used in a freemarker template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<#list .data_model?keys as key> | |
<li>${key}</li> | |
</#list> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment