cryogen

http://cryogenweb.org/ - static sites by @U0DJK1VH6 & Co.
Andrei Stan 2020-11-18T17:27:36.174Z

hello, can someone point me to the documentation about the variables that i can use in cryogen?! For example i need to display all the posts titles but:

{% for post in posts %}
            <li>
                <a href="{{post.uri}}">{{post.title}}</a>
            </li>
        {% endfor %}
does not render anything. If i change posts with latest-posts it works

dorab 2020-11-18T20:52:30.176200Z

I dont believe there is explicit documentation. But if you look at the code for the function compile-assets in compiler.clj and look at the params local variable, you will get some idea of the variables passed to the selmer templating engine.