File: main.html

package info (click to toggle)
python-inline-snapshot 0.23.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,116 kB
  • sloc: python: 6,888; makefile: 34; sh: 28
file content (69 lines) | stat: -rw-r--r-- 1,664 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{% extends "base.html" %}

{% block outdated %}
  You're not viewing the latest version.
  <a href="{{ '../' ~ base_url }}">
    <strong>Click here to go to latest.</strong>
  </a>
{% endblock %}

{% block announce %}

  {{ super() }}
  Become a
  <a href="https://github.com/sponsors/15r10nk" title="Become a sponsor">
    <span class="twemoji heart" style="color:red">
      {% include ".icons/octicons/heart-fill-16.svg" %}
    </span>
      <strong>
        Sponsor
      </strong>
  </a>
  or follow <strong> @15r10nk </strong> on
  <a href="https://x.com/15r10nk" title="follow on X">
    <span class="twemoji circle twitter">
      {% include ".icons/fontawesome/brands/x-twitter.svg" %}
    </span>
  </a> or

  <a href="https://fosstodon.org/@15r10nk" title="follow on mastodon">
    <span class="twemoji circle mastodon">
      {% include ".icons/fontawesome/brands/mastodon.svg" %}
    </span>
  </a>
  <style>
    .circle{
        box-shadow: inset 0 0 0 .05rem currentcolor;
        border-radius: 100%;
        display: inline-block;
        height: 1.2rem !important;
        padding: 0.25rem;
        transition: all .25s;
        vertical-align: bottom !important;
        width: 1.2rem !important;
    }
    :hover > .circle{
        box-shadow: inset 0 0 0 .1rem currentcolor;
        filter: blur(0.5px)
    }
    .twitter {
        color: #fff;
    }
    .mastodon{
     color: #897ff8;
    }

    @keyframes heart {
      0%, 40%, 80%, 100% {
        transform: scale(1);
      }
      20%, 60% {
        transform: scale(1.15);
      }
    }
    .heart {
      animation: heart 1000ms infinite;
    }
  </style>
  for updates
{% endblock %}