зеркало из https://github.com/mozilla/geckoview.git
33 строки
1.4 KiB
HTML
33 строки
1.4 KiB
HTML
<head>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
{% if page.title %}
|
|
<meta name="title" content="{{ page.title }} - {{ site.title }}">
|
|
{% endif %}
|
|
{% if page.description %}
|
|
<meta name="description" content="{{ page.description }}">
|
|
{% elsif page.summary %}
|
|
<meta name="description" content="{{ page.summary }}">
|
|
{% else %}
|
|
<meta name="description" content="{{ site.description }}">
|
|
{% endif %}
|
|
{% if page.tags %}
|
|
<meta name="keywords" content="{{ page.tags | join: "," }}">
|
|
{% else %}
|
|
<meta name="keywords" content="{{ site.tags | join: "," }}">
|
|
{% endif %}
|
|
|
|
<title>{{ page.title }} - {{ site.title }}</title>
|
|
<link rel="stylesheet" href="{{ "/assets/css/just-the-docs.css" | absolute_url }}">
|
|
<link rel="stylesheet" href="{{ "/assets/css/geckoview.css" | absolute_url }}">
|
|
{% if site.search_enabled != nil %}
|
|
<script type="text/javascript" src="{{ "/assets/js/vendor/lunr.min.js" | absolute_url }}"></script>
|
|
{% endif %}
|
|
<script type="text/javascript" src="{{ "/assets/js/just-the-docs.js" | absolute_url }}"></script>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|