tor-browser

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

aboutRobots.xhtml (2156B)


      1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      2   - License, v. 2.0. If a copy of the MPL was not distributed with this
      3   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      4 
      5 <!DOCTYPE html>
      6 <html xmlns="http://www.w3.org/1999/xhtml">
      7  <head>
      8    <meta
      9      http-equiv="Content-Security-Policy"
     10      content="default-src chrome:; object-src 'none'"
     11    />
     12    <meta name="color-scheme" content="light dark" />
     13    <title data-l10n-id="page-title"></title>
     14    <link
     15      rel="stylesheet"
     16      href="chrome://global/skin/in-content/info-pages.css"
     17      media="all"
     18    />
     19    <link
     20      rel="icon"
     21      type="image/png"
     22      id="favicon"
     23      href="chrome://browser/content/robot.ico"
     24    />
     25    <link rel="stylesheet" href="chrome://browser/content/aboutRobots.css" />
     26    <linkset>
     27      <link rel="localization" href="browser/aboutRobots.ftl" />
     28    </linkset>
     29  </head>
     30 
     31  <body>
     32    <!-- PAGE CONTAINER (for styling purposes only) -->
     33    <div class="container">
     34      <!-- Error Title -->
     35      <div class="title">
     36        <h1 class="title-text" data-l10n-id="error-title-text"></h1>
     37      </div>
     38 
     39      <!-- LONG CONTENT (the section most likely to require scrolling) -->
     40      <div class="description">
     41        <!-- Short Description -->
     42        <div>
     43          <p id="errorShortDescText" data-l10n-id="error-short-desc-text"></p>
     44        </div>
     45 
     46        <!-- Long Description -->
     47        <div>
     48          <ul>
     49            <li data-l10n-id="error-long-desc1"></li>
     50            <li data-l10n-id="error-long-desc2"></li>
     51            <li data-l10n-id="error-long-desc3"></li>
     52            <li data-l10n-id="error-long-desc4"></li>
     53          </ul>
     54        </div>
     55 
     56        <!-- Short Description -->
     57        <div>
     58          <small data-l10n-id="error-trailer-desc-text"></small>
     59        </div>
     60      </div>
     61 
     62      <!-- Button -->
     63      <div class="button-container">
     64        <button
     65          id="errorTryAgain"
     66          data-l10n-id="error-try-again"
     67          data-l10n-attrs="label2"
     68        ></button>
     69      </div>
     70    </div>
     71  </body>
     72  <script src="chrome://browser/content/aboutRobots.js" />
     73 </html>