Home Download Direct linkSettings
Aa
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
Copy
{%- extends "base.html" -%}
{%- block title -%} License {%- endblock -%}

{%- block head -%}
<style>
    pre.license {
        white-space: pre-wrap;
    }
</style>
{%- endblock -%}

{%- block content -%}
<div class="centered">
    In short, you can do anything with the content of this site,
    just please leave a link to the author.

    <hr>
    <span>Full license text:</span>
    <pre class="license">
        {{- LICENSE_TEXT -}}
    </pre>
    <hr>
</div>

<div class="centered-line-block">
    <a href="https://github.com/google/material-design-icons/blob/master/LICENSE" class="button">
        <span class="icon" data-icon="category"></span>
        Material icons license
    </a>
    <a href="https://github.com/primer/octicons/blob/main/LICENSE" class="button">
        <span class="svg-icon github-icon"></span>
        Octicons license
    </a>
</div>
{%- endblock -%}