Compare commits
2 Commits
45c4944ce2
...
3ce1237d66
| Author | SHA1 | Date |
|---|---|---|
|
|
3ce1237d66 | |
|
|
47b5abe4e1 |
|
|
@ -131,7 +131,7 @@ class BaseController(Controller):
|
|||
return Template(name="contacts.html")
|
||||
|
||||
@get("/donate")
|
||||
async def contacts(self) -> Template:
|
||||
async def donate(self) -> Template:
|
||||
return Template(name="donate.html")
|
||||
|
||||
@get("/sitemap.xml", media_type=MediaType.XML)
|
||||
|
|
@ -153,6 +153,10 @@ class BaseController(Controller):
|
|||
<loc>https://xn-----6kcp3cadbabfh8a0a.xn--p1ai/cats</loc>
|
||||
<lastmod>2025-04-21T19:01:03+00:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://xn-----6kcp3cadbabfh8a0a.xn--p1ai/donate</loc>
|
||||
<lastmod>2025-04-27T19:01:03+00:00</lastmod>
|
||||
</url>
|
||||
|
||||
|
||||
</urlset>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
{% block meta %}{% endblock %}
|
||||
<link rel="icon" type="image/x-icon" href="static/favicon.ico">
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<link rel="stylesheet" href="static/styles.css?v=1">
|
||||
<link rel="stylesheet" href="static/styles.css?v=2">
|
||||
<!-- Yandex.Metrika counter -->
|
||||
<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)};
|
||||
|
|
|
|||
Loading…
Reference in New Issue