Using Liquid in Power Pages allows you to create code to conditionally display both static and dynamic content based on certain conditions. A very simple example of this would be this piece of Liquid code that you can place in the source of a web page, web template, or a content snippet:
{% if user %}
Hello {{ user.fullname }}
{% else %}
Hello stranger
{% endif %}
The above code…
Continue Reading Nick Doelman’s Article on their blog
Power Pages: conditional display, site markers, and Liquid filters
Using Liquid in Power Pages allows you to create code to conditionally display both static and dynamic content based on certain conditions. A very simple example of this would be this piece of Liquid code that you can place in the source of a web page, web template, or a content snippet: {% if user…
Blog Syndicated with Nick Doelman’s Permission

