By studying Node-Red a bit I came across the following expression, {{#header.url}
.
Many expressions of the type are present in the code, for example: {{/header.url}}
, {{#header.image}}
, etc. Here is a snippet of code:
<span class="logo">{{#header.url}}<a href="{{.}}">{{/header.url}}{{#header.image}}<img src="{{.}}" title="{{version}}">{{/header.image}} <span>{{ header.title }}</span>{{#header.url}}</a>{{/header.url}}</span>
<ul class="header-toolbar hide">
Can anyone tell me what this expression is doing?