File: base.html

package info (click to toggle)
streamlink 8.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,564 kB
  • sloc: python: 51,188; sh: 184; makefile: 152
file content (20 lines) | stat: -rw-r--r-- 1,004 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends '!base.html' %}
{%- block site_meta -%}
  {{ super() }}
  <link rel="apple-touch-icon" sizes="180x180" href="/_static/apple-touch-icon.png">
  <link rel="icon" type="image/png" sizes="32x32" href="/_static/favicon-32x32.png">
  <link rel="icon" type="image/png" sizes="16x16" href="/_static/favicon-16x16.png">
  <link rel="shortcut icon" href="/_static/favicon.ico">
  <link rel="manifest" href="/_static/site.webmanifest">
  {% if not docstitle -%}
    <meta property="og:title" content="{{ title|striptags|e }}">
  {%- elif pagename == master_doc -%}
    <meta property="og:title" content="{{ docstitle|striptags|e }}">
  {%- else -%}
    <meta property="og:title" content="{{ title|striptags|e }} - {{ docstitle|striptags|e }}">
  {%- endif %}
  <meta property="og:description" content="{{ oneliner }}">
  <meta property="og:image" content="/_static/opengraph-image.png">
  <meta property="og:image:width" content="1200">
  <meta property="og:image:height" content="630">
{%- endblock -%}