tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

archive.template.html (2555B)


      1 #if 0
      2 #
      3 # This Source Code Form is subject to the terms of the Mozilla Public
      4 # License, v. 2.0. If a copy of the MPL was not distributed with this
      5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      6 #
      7 # This template file is used to construct the single-file archive of a backup.
      8 # This template file is part of our source code, and so this is why we include
      9 # the license header above. We do not, however, want to apply the header to
     10 # backup files that are generated via this template. This is why we use the
     11 # pre-processor mechanism to remove this comment block at build time.
     12 #
     13 # See Archive.worker.mjs for more details on how this template is used.
     14 #
     15 #endif
     16 <!DOCTYPE html>
     17 <!-- Version: 1 -->
     18 <html>
     19  <head>
     20    <meta charset="UTF-8" />
     21    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     22    <title data-l10n-id="backup-file-title"></title>
     23    <style>
     24    {{styles}}
     25    </style>
     26  </head>
     27  <body>
     28    <img id="logo" role="presentation" />
     29    <h1 data-l10n-id="backup-file-header"></h1>
     30    <p data-l10n-id="backup-file-intro">
     31      <a data-l10n-name="backup-file-support-link" id="support-link" target="_blank"></a>
     32    </p>
     33 
     34    <dl>
     35      <dt data-l10n-id="backup-file-path-label"></dt>
     36      <dd id="backup-file-path-value"></dd>
     37      <dt data-l10n-id="backup-file-creation-date-label"></dt>
     38      <dd id="creation-date-value" data-l10n-id="backup-file-creation-date-value"></dd>
     39      <dt data-l10n-id="backup-file-creation-device-label"></dt>
     40      <dd id="creation-device-value"></dd>
     41      <dt data-l10n-id="backup-file-encryption-state-label"></dt>
     42      <dd id="encryption-state-value"></dd>
     43    </dl>
     44    <h2 data-l10n-id="backup-file-how-to-restore-header"></h2>
     45    <section class="moz-browser">
     46      <ol>
     47        <li data-l10n-id="backup-file-moz-browser-restore-step-1"></li>
     48        <li data-l10n-id="backup-file-moz-browser-restore-step-2"></li>
     49        <li data-l10n-id="backup-file-moz-browser-restore-step-3"></li>
     50      </ol>
     51    </section>
     52    <section class="other-browser">
     53      <ol>
     54        <li><span data-l10n-id="backup-file-other-browser-restore-step-1"></span><a id="download-moz-browser" class="button-link" data-l10n-id="backup-file-download-moz-browser-button"></a></li>
     55        <li data-l10n-id="backup-file-other-browser-restore-step-2"></li>
     56        <li data-l10n-id="backup-file-other-browser-restore-step-3"></li>
     57        <li data-l10n-id="backup-file-other-browser-restore-step-4"></li>
     58      </ol>
     59    </section>
     60  </body>
     61  <script>
     62  {{script}}
     63  </script>
     64 </html>