From: Vincent Vanwaelscappel Date: Wed, 16 Aug 2023 13:22:26 +0000 (+0200) Subject: wip #6195 @0.5 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=850f237128d70f85eb53bbdd61eea4d98070215a;p=fluidbook-toolbox-quiz.git wip #6195 @0.5 --- diff --git a/.idea/deployment.xml b/.idea/deployment.xml index a28af2b..4cff5f5 100644 --- a/.idea/deployment.xml +++ b/.idea/deployment.xml @@ -1,6 +1,7 @@ - + + \ No newline at end of file diff --git a/views/index.blade.php b/views/index.blade.php index a01d88a..1a501d7 100644 --- a/views/index.blade.php +++ b/views/index.blade.php @@ -10,7 +10,7 @@ -@include("quizv2.sprite") +@include("sprite") @php $totalQuestion = sizeof($data->questions); $alphabet = range('A', 'Z'); @@ -18,12 +18,12 @@
@if($data->intro_enable) - @include('quizv2.screens.intro', ['data'=> $data]) + @include('screens.intro', ['data'=> $data]) @endif @foreach($data->questions as $key => $question) - @include('quizv2.screens.question_'.$question['type'], ['theme' => $data->theme, 'data'=> $question, 'max' => $totalQuestion, 'position' => $key, 'alphabet' => $alphabet]) + @include('screens.question_'.$question['type'], ['theme' => $data->theme, 'data'=> $question, 'max' => $totalQuestion, 'position' => $key, 'alphabet' => $alphabet]) @endforeach - @include('quizv2.screens.outro', ['data'=> $data]) + @include('screens.outro', ['data'=> $data])
diff --git a/views/screens/intro.blade.php b/views/screens/intro.blade.php index 291f435..fdb718c 100644 --- a/views/screens/intro.blade.php +++ b/views/screens/intro.blade.php @@ -2,9 +2,9 @@ $absPath = \App\Models\Quiz::find($data->id)->getPreviewURL(); @endphp