1{#
2    LimeSurvey
3    Copyright (C) 2007-2017 The LimeSurvey Project Team / Louis Gac
4    All rights reserved.
5    License: GNU/GPL License v2 or later, see LICENSE.php
6    LimeSurvey is free software. This version may have been modified pursuant
7    to the GNU General Public License, and as distributed it includes or
8    is derivative of works licensed under the GNU General Public License or
9    other free or open source software licenses.
10    See COPYRIGHT.php for copyright notices and details.
11
12    (¯`·._.·(¯`·._.· Content First Page  ·._.·´¯)·._.·´¯)
13
14    This content is included inside mainrow.twig
15
16#}
17
18{# render the layout_global content block #}
19
20{# Include the alert for no JavaScript #}
21{{ include('./subviews/messages/no_js_alert.twig') }}
22
23{# Include the language changer selector #}
24{{ include('./subviews/navigation/language_changer_first_page.twig') }}
25
26{# Include the form opening tag #}
27{{ include('./subviews/header/start_form.twig') }} <!-- main form -->
28
29    {# This will display the script and the hidden inputs needed for Expression Manager #}
30    {{ aSurveyInfo.EM.ScriptsAndHiddenInputs  }}
31
32    {# If survey mode is "All in One", this will add the welcome/privacy messages (if activated) #}
33    {{ include('./subviews/messages/welcome.twig') }}
34
35
36    {{ include('./subviews/privacy/privacy.twig') }}
37
38    {# Presents the navigator #}
39    {{ include('./subviews/navigation/navigator.twig') }}
40</form> <!-- main form -->
41
42{{ registerScript("BasicFirstPageThemeScripts", "
43    if(window.basicThemeScripts === undefined){
44        window.basicThemeScripts = new ThemeScripts();
45    }
46    basicThemeScripts.initWelcomePage();
47", 'POS_POSTSCRIPT') }}
48