File: about.html

package info (click to toggle)
flycheck 31-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,660 kB
  • sloc: lisp: 11,831; python: 729; makefile: 243; cpp: 23; ruby: 23; ada: 17; f90: 16; xml: 14; erlang: 14; ansic: 12; haskell: 12; sh: 10; php: 9; perl: 7; fortran: 3; sql: 1
file content (43 lines) | stat: -rw-r--r-- 1,546 bytes parent folder | download
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% if theme_logo %}
<p class="logo">
    <a href="{{ pathto(master_doc) }}">
        <img class="logo" src="{{ pathto('_static/' ~ theme_logo, 1) }}" alt="Logo"/>
        {% if theme_logo_name|lower == 'true' %}
        <h1 class="logo logo-name">{{ project }}</h1>
        {% endif %}
    </a>
</p>
{% else %}
<h1 class="logo"><a href="{{ pathto(master_doc) }}">{{ project }}</a></h1>
{% endif %}

{% if theme_description %}
<p class="blurb">{{ theme_description }}</p>
{% endif %}

{% macro badge(badge, href) -%}
<p><a href="{{href}}"><img src="https://img.shields.io/{{badge}}"/></a></p>
{%- endmacro %}

{% if theme_github_user and theme_github_repo and not flycheck_offline_html %}
{% if theme_github_button|lower == 'true' %}
<p>
    <iframe src="https://ghbtns.com/github-btn.html?user={{ theme_github_user }}&amp;repo={{ theme_github_repo }}&amp;type={{ theme_github_type }}&amp;count={{ theme_github_count }}&amp;v=2"
            allowtransparency="true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe>
</p>
{% endif %}
{% endif %}

{% if not flycheck_offline_html %}
<p>
    <a href="https://gitter.im/flycheck/flycheck">
        <img src="https://img.shields.io/gitter/room/flycheck/flycheck.svg?maxAge=2592000" />
    </a>
</p>
<p>
    <a href="http://stable.melpa.org/#/flycheck"><img alt="MELPA Stable" src="http://stable.melpa.org/packages/flycheck-badge.svg"/></a>
</p>
<p>
    <a href="https://melpa.org/#/flycheck"><img alt="MELPA" src="https://melpa.org/packages/flycheck-badge.svg"/></a>
</p>
{% endif %}