• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D26-Oct-20201.1 KiB3525

clearall.twigH A D26-Oct-20201.1 KiB2520

firstpage.twigH A D26-Oct-20201.7 KiB4834

load.twigH A D26-Oct-20208.2 KiB144122

main.twigH A D26-Oct-20201.8 KiB5237

mainrow.twigH A D26-Oct-20201.4 KiB3527

optin.twigH A D26-Oct-202040 21

optout.twigH A D26-Oct-202040 21

outerframe.twigH A D26-Oct-20201.1 KiB2519

printanswers.twigH A D26-Oct-20201.2 KiB2722

quotas.twigH A D26-Oct-20205.5 KiB10988

register.twigH A D26-Oct-20201.8 KiB3831

save.twigH A D26-Oct-202012.8 KiB233194

submit.twigH A D26-Oct-20204.1 KiB8674

submit_preview.twigH A D26-Oct-20202.8 KiB5954

userforms.twigH A D26-Oct-20201.3 KiB3425

README.md

1![LimeSurvey Logo](https://account.limesurvey.org/images/logos/logo_main.png)
2# LimeSurvey Bootstrap Vanilla Survey Theme
3
4## content directory
5
6
7layout_global.twig renders the specific content via this statement:
8```
9{% set sViewContent =  './subviews/content/' ~ aSurveyInfo.include_content ~ '.twig'%}
10{% include './subviews/content/outerframe.twig' with {'include_content': sViewContent } %}
11```
12
13see: https://github.com/LimeSurvey/LimeSurvey/blob/7ffc17fbb872791a9ba1a6b6ab68cec0263f3eca/themes/survey/vanilla/views/layout_global.twig#L103-L111
14
15Here are the subviews to render the content. Most of them corresponds to the old pstpl files for limesurvey 2.x
16
17* mainrow.twig
18* submit_preview.twig
19* quotas.twig
20* survey_list.twig
21* clearall.twig
22* register.twig
23* firstpage.twig
24* load.twig
25* outerframe.twig
26* submit.twig
27* save.twig
28* main.twig
29
30
31If you're creating a template from scratch, you're free to place the content views where ever you want. Just update the definition of sViewContent in layout_global.
32**But you must keep the filename as they are.**
33
34Please, contact LimeSurvey team if you think a file name should be changed.
35