main
html 38 lines 1.04 KB
Raw
1 <html>
2 <head>
3 <title>Check for updates</title>
4 </head>
5
6 <body>
7 <div x-data>
8 <template x-if="$store.settings">
9 <div>
10 <nav>
11 <ul>
12 <li>
13 <a href="#section-self-update">
14 <img src="/public/update_checker.svg" alt="Self Update" />
15 <span>Self Update</span>
16 </a>
17 </li>
18 <li>
19 <a href="#section-backup-restore">
20 <img src="/public/backup_restore.svg" alt="Backup & Restore" />
21 <span>Backup &amp; Restore</span>
22 </a>
23 </li>
24 </ul>
25 </nav>
26
27 <div id="section-self-update" class="section">
28 <x-component path="settings/backup/self-update.html"></x-component>
29 </div>
30
31 <div id="section-backup-restore" class="section">
32 <x-component path="settings/backup/backup_restore.html"></x-component>
33 </div>
34 </div>
35 </template>
36 </div>
37 </body>
38 </html>