- Posts: 38
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
{% if (aSurveyInfo.aNavigator.show and aSurveyInfo.include_content == 'firstpage') %} <!-- Do something in the Welcome page --> This is the welcome page! {% endif %}
{{ image(aSurveyInfo.options.brandlogofile, aSurveyInfo.name, {"class": "logo img-responsive"}) }}
{% set logoFilePath = aSurveyInfo.options.brandlogofile %} {% if (aSurveyInfo.aNavigator.show and aSurveyInfo.include_content == 'firstpage') %} {% set logoFilePath = aSurveyInfo.options.brandlogofile|replace({'.png': '_welcome.png', '.jpg': '_welcome.jpg'}) %} {% endif %} {{ image(logoFilePath, aSurveyInfo.name, {"class": "logo img-responsive"}) }}
Please Log in to join the conversation.