main
html 23 lines 573 Bytes
Raw
1 <html>
2 <head>
3 <title>Workdir structure test</title>
4
5 <script type="module">
6 import { store as settingsStore } from "/components/settings/settings-store.js";
7 </script>
8 </head>
9
10 <body>
11 <div x-data>
12 <template x-if="$store.settings && $store.settings.settings">
13 <div>
14 <h3>Workdir structure test - <span x-text="$store.settings.settings.workdir_path"></span></h3>
15 <pre x-text="$store.settings.workdirFileStructureTestOutput"></pre>
16 </div>
17 </template>
18 </div>
19 </body>
20
21 <style>
22 </style>
23 </html>