We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c44c090 commit e5cc9c2Copy full SHA for e5cc9c2
resources/views/banques/banque-sujets.blade.php
@@ -13,6 +13,12 @@
13
@include('inc-nav')
14
<?php
15
$lang ='/';
16
+
17
18
+ $sujets = [
19
+ '[Sujet Bac NSI 2024] Métropole - Réunion - Mayotte - Jour 1 - 24NSIJ1ME1' => 'S2K3Y6',
20
+ '[Sujet Bac NSI 2024] Métropole - Réunion - Mayotte - Jour 2 - 24NSIJ2ME1' => 'SSDHAQ',
21
+ ]
22
?>
23
24
<div class="container mt-4 mb-5">
@@ -28,7 +34,11 @@
28
34
29
35
<h1>Banque de sujets</h1>
30
36
31
- <pre>en travaux</pre>
37
+ <ul class="text-monospace">
38
+ @foreach($sujets AS $titre => $code)
39
+ <li>{{$titre}}: <a href="/{{$code}}" target="_blank">www.codepuzzle.io/{{$code}}</a></li>
40
+ @endforeach
41
+ </ul>
32
42
33
43
</div>
44
0 commit comments