Welcome to mirror list, hosted at ThFree Co, Russian Federation.

default.html « _layouts « docs - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 922b54c36640989b401ba245e2480bc234c2ea4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="{{ site.description }}">
    <meta name="robots" content="noindex">
    <title>{{ site.title }}</title>
    <link rel="icon" type="image/x-icon" href="{{ "/assets/favicon.ico" | relative_url }}">
    <!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> -->
    <link rel="stylesheet" href="https://twbs-bootstrap.netlify.com/docs/4.3/dist/css/bootstrap.min.css">
    <link rel="stylesheet" href="{{ '/assets/css/docs.css' | relative_url }}?{{ site.time | date: '%s' }}">
  </head>
  <body>
    {% include navbar.html %}

    {{ content }}

    <script src="https://cdnjs.cloudflare.com/ajax/libs/list.js/1.5.0/list.min.js"></script>
    <script>
      var options = {
        valueNames: ['name']
      };
      var iconsList = new List('icons', options);
    </script>
  </body>
</html>