Compare commits
No commits in common. "3ce1237d660c2dcc78e5a56e9cbb57fc56db21d3" and "45c4944ce2284a9d84a458d49a86e3d7e7191920" have entirely different histories.
3ce1237d66
...
45c4944ce2
|
|
@ -131,7 +131,7 @@ class BaseController(Controller):
|
||||||
return Template(name="contacts.html")
|
return Template(name="contacts.html")
|
||||||
|
|
||||||
@get("/donate")
|
@get("/donate")
|
||||||
async def donate(self) -> Template:
|
async def contacts(self) -> Template:
|
||||||
return Template(name="donate.html")
|
return Template(name="donate.html")
|
||||||
|
|
||||||
@get("/sitemap.xml", media_type=MediaType.XML)
|
@get("/sitemap.xml", media_type=MediaType.XML)
|
||||||
|
|
@ -153,10 +153,6 @@ class BaseController(Controller):
|
||||||
<loc>https://xn-----6kcp3cadbabfh8a0a.xn--p1ai/cats</loc>
|
<loc>https://xn-----6kcp3cadbabfh8a0a.xn--p1ai/cats</loc>
|
||||||
<lastmod>2025-04-21T19:01:03+00:00</lastmod>
|
<lastmod>2025-04-21T19:01:03+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
|
||||||
<loc>https://xn-----6kcp3cadbabfh8a0a.xn--p1ai/donate</loc>
|
|
||||||
<lastmod>2025-04-27T19:01:03+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
|
|
||||||
|
|
||||||
</urlset>
|
</urlset>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
{% block meta %}{% endblock %}
|
{% block meta %}{% endblock %}
|
||||||
<link rel="icon" type="image/x-icon" href="static/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="static/favicon.ico">
|
||||||
<title>{% block title %}{% endblock %}</title>
|
<title>{% block title %}{% endblock %}</title>
|
||||||
<link rel="stylesheet" href="static/styles.css?v=2">
|
<link rel="stylesheet" href="static/styles.css?v=1">
|
||||||
<!-- Yandex.Metrika counter -->
|
<!-- Yandex.Metrika counter -->
|
||||||
<script type="text/javascript" >
|
<script type="text/javascript" >
|
||||||
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue