tmp
This commit is contained in:
@@ -9,7 +9,12 @@ import blueprints.risdeveau.modules.style
|
|||||||
from flask import Flask
|
from flask import Flask
|
||||||
|
|
||||||
|
|
||||||
app = Flask(__name__, static_folder=None, subdomain_matching=True)
|
app = Flask(
|
||||||
|
__name__,
|
||||||
|
static_folder=None,
|
||||||
|
subdomain_matching=True,
|
||||||
|
template_folder="blueprints"
|
||||||
|
)
|
||||||
|
|
||||||
app.jinja_env.add_extension('pypugjs.ext.jinja.PyPugJSExtension')
|
app.jinja_env.add_extension('pypugjs.ext.jinja.PyPugJSExtension')
|
||||||
|
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ args = {
|
|||||||
|
|
||||||
@bp.route("/")
|
@bp.route("/")
|
||||||
def index():
|
def index():
|
||||||
return render_tmpl('index.html', **args)
|
return render_tmpl('index.pug', **args)
|
||||||
|
|
||||||
@bp.route("/m/<module>")
|
@bp.route("/m/<module>")
|
||||||
def module(module):
|
def module(module):
|
||||||
|
|||||||
@@ -1,57 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Sweet Bread</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/static/style/tw.css">
|
|
||||||
<link rel="stylesheet" href="/static/style/main.css">
|
|
||||||
<link rel="stylesheet" href="/static/style/risdeveau.css">
|
|
||||||
<link rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp" />
|
|
||||||
|
|
||||||
<script src="/static/script/rtime.js"></script>
|
|
||||||
<script
|
|
||||||
src="https://track.lair.moe/api/script.js"
|
|
||||||
data-site-id="1"
|
|
||||||
defer
|
|
||||||
></script>
|
|
||||||
<script
|
|
||||||
src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.8/dist/htmx.min.js"
|
|
||||||
integrity="sha384-/TgkGk7p307TH7EXJDuUlgG3Ce1UVolAOFopFekQkkXihi5u/6OCvVKyz1W+idaz"
|
|
||||||
crossorigin="anonymous"
|
|
||||||
></script>
|
|
||||||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta
|
|
||||||
name="htmx-config"
|
|
||||||
content='{
|
|
||||||
"responseHandling":[
|
|
||||||
{"code":"204", "swap": false},
|
|
||||||
{"code":"304", "swap": false},
|
|
||||||
{"code":"[23]..", "swap": true},
|
|
||||||
{"code":"422", "swap": true},
|
|
||||||
{"code":"[45]..", "swap": false, "error":true},
|
|
||||||
{"code":"...", "swap": true}
|
|
||||||
]
|
|
||||||
}'
|
|
||||||
/>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a href="{{ url_for('root.index') }}">Lair</a>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
{% for m in (
|
|
||||||
'info',
|
|
||||||
'contacts',
|
|
||||||
'listenbrainz',
|
|
||||||
'steam',
|
|
||||||
'donate',
|
|
||||||
'88x31'
|
|
||||||
) %}
|
|
||||||
{% include 'risdeveau/templates/%s.pug' % m %}
|
|
||||||
{% endfor %}
|
|
||||||
</main>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
doctype html
|
||||||
|
|
||||||
|
html(lang="en")
|
||||||
|
head
|
||||||
|
title Sweet Bread
|
||||||
|
|
||||||
|
each f in ('tw', 'main', 'risdeveau')
|
||||||
|
link(rel="stylesheet", href="/static/style/#{f}.css")
|
||||||
|
|
||||||
|
link(rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp")
|
||||||
|
|
||||||
|
script(src="/static/script/rtime.js")
|
||||||
|
script(
|
||||||
|
src="https://track.lair.moe/api/script.js"
|
||||||
|
data-site-id="1"
|
||||||
|
defer
|
||||||
|
)
|
||||||
|
script(
|
||||||
|
src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.8/dist/htmx.min.js"
|
||||||
|
integrity="sha384-/TgkGk7p307TH7EXJDuUlgG3Ce1UVolAOFopFekQkkXihi5u/6OCvVKyz1W+idaz"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
)
|
||||||
|
script(defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js")
|
||||||
|
|
||||||
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
||||||
|
meta(
|
||||||
|
name="htmx-config"
|
||||||
|
content='{
|
||||||
|
"responseHandling":[
|
||||||
|
{"code":"204", "swap": false},
|
||||||
|
{"code":"304", "swap": false},
|
||||||
|
{"code":"[23]..", "swap": true},
|
||||||
|
{"code":"422", "swap": true},
|
||||||
|
{"code":"[45]..", "swap": false, "error":true},
|
||||||
|
{"code":"...", "swap": true}
|
||||||
|
]
|
||||||
|
}'
|
||||||
|
)
|
||||||
|
|
||||||
|
body
|
||||||
|
header
|
||||||
|
a(href=url_for('root.index')) Lair
|
||||||
|
|
||||||
|
main
|
||||||
|
include risdeveau/templates/info.pug
|
||||||
|
include risdeveau/templates/contacts.pug
|
||||||
|
include risdeveau/templates/listenbrainz.pug
|
||||||
|
include risdeveau/templates/steam.pug
|
||||||
|
include risdeveau/templates/donate.pug
|
||||||
|
include risdeveau/templates/88x31.pug
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
mixin track_block(track, is_active=false)
|
mixin track_block(track, is_active=false)
|
||||||
.block.track
|
- set act_cls = "active" if is_active else ""
|
||||||
|
.block.track(class=act_cls)
|
||||||
if track.cover_url
|
if track.cover_url
|
||||||
img(src=track.cover_url)
|
img(src=track.cover_url)
|
||||||
div
|
div
|
||||||
@@ -18,13 +19,13 @@ mixin track_block(track, is_active=false)
|
|||||||
hx-get="/m/listenbrainz",
|
hx-get="/m/listenbrainz",
|
||||||
hx-trigger="every 15s",
|
hx-trigger="every 15s",
|
||||||
hx-swap="outerHTML",
|
hx-swap="outerHTML",
|
||||||
hx-headers='{ "If-None-Match": "#{lb.etag}" }'
|
hx-headers='{"If-None-Match": "#{lb.etag}"}'
|
||||||
)
|
)
|
||||||
h2
|
h2
|
||||||
a(href="https://listenbrainz.org/user/risdeveau/") Listenbrainz
|
a(href="https://listenbrainz.org/user/risdeveau/") Listenbrainz
|
||||||
|
|
||||||
if lb.caches.now.data and lb.caches.now.data.listens[0]
|
if lb.caches.now.data and lb.caches.now.data.listens[0]
|
||||||
+track_block.active(lb.caches.now.data.listens[0])
|
+track_block(lb.caches.now.data.listens[0], true)
|
||||||
|
|
||||||
if lb.caches.listens.data and lb.caches.listens.data.listens
|
if lb.caches.listens.data and lb.caches.listens.data.listens
|
||||||
each track in lb.caches.listens.data.listens
|
each track in lb.caches.listens.data.listens
|
||||||
|
|||||||
@@ -17,14 +17,14 @@ mixin game_block(g, show_last_played=false)
|
|||||||
abbr(title="On Linux") L
|
abbr(title="On Linux") L
|
||||||
| )
|
| )
|
||||||
if lin and win
|
if lin and win
|
||||||
| +
|
= " + "
|
||||||
if win
|
if win
|
||||||
= tmsmp(g.playtime_windows_forever * 60)
|
= tmsmp(g.playtime_windows_forever * 60)
|
||||||
| (
|
| (
|
||||||
abbr(title="On Windows") W
|
abbr(title="On Windows") W
|
||||||
| )
|
| )
|
||||||
if lin and win
|
if lin and win
|
||||||
| =
|
= " = "
|
||||||
= tmsmp(g.playtime_forever * 60)
|
= tmsmp(g.playtime_forever * 60)
|
||||||
if show_last_played and g.rtime_last_played != 0
|
if show_last_played and g.rtime_last_played != 0
|
||||||
p Last played: #{utmsmp(g.rtime_last_played)}
|
p Last played: #{utmsmp(g.rtime_last_played)}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ def render_tmpl(filename: str) -> str:
|
|||||||
|
|
||||||
@bp.route("/")
|
@bp.route("/")
|
||||||
def index():
|
def index():
|
||||||
return render_tmpl('index.html')
|
return render_tmpl('index.pug')
|
||||||
|
|
||||||
@bp.route("/host")
|
@bp.route("/host")
|
||||||
def host():
|
def host():
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
doctype html
|
||||||
|
html(lang=g.locale)
|
||||||
|
head
|
||||||
|
title Lair
|
||||||
|
|
||||||
|
link(rel="stylesheet" href="/static/style/main.css")
|
||||||
|
link(rel="icon" type="image/webp" href="/static/icon/lair.webp")
|
||||||
|
|
||||||
|
script(src="/static/script/copy-mono.js")
|
||||||
|
script(
|
||||||
|
src="https://track.lair.moe/api/script.js"
|
||||||
|
data-site-id="1"
|
||||||
|
defer
|
||||||
|
)
|
||||||
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
||||||
|
meta(name="mock-email" content="admin@example.com")
|
||||||
|
|
||||||
|
meta(property="og:type" value="website")
|
||||||
|
meta(property="og:url" value="https://lair.moe")
|
||||||
|
meta(property="og:title" value="Lair.moe")
|
||||||
|
meta(property="og:image" value="https://lair.moe/static/icon/lair.webp")
|
||||||
|
meta(property="og:description" value=_("description"))
|
||||||
|
|
||||||
|
body
|
||||||
|
include root/templates/header.pug
|
||||||
|
|
||||||
|
h1
|
||||||
|
block title
|
||||||
|
|
||||||
|
main
|
||||||
|
block content
|
||||||
|
|
||||||
|
include root/templates/footer.pug
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Lair</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/static/style/main.css">
|
|
||||||
<link rel="icon" type="image/webp" href="/static/icon/lair.webp" />
|
|
||||||
<script src="/static/script/copy-mono.js"> </script>
|
|
||||||
<script
|
|
||||||
src="https://track.lair.moe/api/script.js"
|
|
||||||
data-site-id="1"
|
|
||||||
defer
|
|
||||||
></script>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="mock-email" content="admin@example.com">
|
|
||||||
|
|
||||||
<!-- og meta -->
|
|
||||||
<meta property="og:type" value="website" />
|
|
||||||
<meta property="og:url" value="https://lair.moe" />
|
|
||||||
<meta property="og:title" value="Lair.moe" />
|
|
||||||
<meta property="og:image" value="https://lair.moe/static/icon/lair.webp" />
|
|
||||||
<meta property="og:description" value="{{ _("description") }}" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
{% include 'header.tmpl' %}
|
|
||||||
|
|
||||||
<h1>{% block title %}{% endblock %}</h1>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
{% block content %}{% endblock %}
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{% include 'footer.tmpl' %}
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
footer
|
||||||
|
div
|
||||||
|
| lair.moe 🄯 2025 - 2026</div>
|
||||||
|
div
|
||||||
|
a(href="https://g.lair.moe/Sweetbread/lair.moe")= _('site source')
|
||||||
|
div
|
||||||
|
= _('contact us')
|
||||||
|
= ": "
|
||||||
|
a(href="mailto:admin@lair.moe") admin@lair.moe
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
<footer>
|
|
||||||
<div>lair.moe 🄯 2025 - 2026</div>
|
|
||||||
<div><a href="https://g.lair.moe/Sweetbread/lair.moe">{{ _('site source') }}</a></div>
|
|
||||||
<div>{{ _('contact us') }}: <a href="mailto:admin@lair.moe">admin@lair.moe</a></div>
|
|
||||||
</footer>
|
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
header
|
||||||
|
if request.path != url_for('.index')
|
||||||
|
a(href=url_for('.index')) Lair
|
||||||
|
else
|
||||||
|
div
|
||||||
|
|
||||||
|
.header-links
|
||||||
|
-
|
||||||
|
var links = (
|
||||||
|
('.us', _('about us')),
|
||||||
|
('.host', _('about host')),
|
||||||
|
)
|
||||||
|
each l, t in links
|
||||||
|
if url_for(l) == request.path
|
||||||
|
strong= t
|
||||||
|
else
|
||||||
|
a(href=url_for(l))= t
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<header>
|
|
||||||
{%- if request.path != url_for('.index') %}
|
|
||||||
<a href="{{ url_for('.index') }}">Lair</a>
|
|
||||||
{%- else %}
|
|
||||||
<div></div>
|
|
||||||
{%- endif %}
|
|
||||||
|
|
||||||
<div class="header-links">
|
|
||||||
{%- for (l, t) in (
|
|
||||||
('.us', _('about us')),
|
|
||||||
('.host', _('about host'))
|
|
||||||
) %}
|
|
||||||
{%- if url_for(l) == request.path %}
|
|
||||||
<strong>{{ t }}</strong>
|
|
||||||
{%- else %}
|
|
||||||
<a href="{{ url_for(l) }}">{{ t }}</a>
|
|
||||||
{%- endif %}
|
|
||||||
{%- endfor %}
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
extends base.tmpl
|
extends root/templates/base.pug
|
||||||
|
|
||||||
block title
|
block title
|
||||||
= _('about host')
|
= _('about host')
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
{% extends 'base.tmpl' %}
|
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
<img src="/static/icon/lair.webp" class="icon" />
|
|
||||||
Lair
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<a href="https://b.lair.moe" target="_blank" class="block">
|
|
||||||
<div class="header">
|
|
||||||
<img src="/static/icon/service/sharkey.webp" class="icon"/>
|
|
||||||
<strong>Sharkey</strong>
|
|
||||||
</div>
|
|
||||||
<p>{{ _('index.descr:sharkey') }}</p>
|
|
||||||
</a>
|
|
||||||
<a href="https://g.lair.moe" target="_blank" class="block">
|
|
||||||
<div class="header">
|
|
||||||
<img src="/static/icon/service/gitea.webp" class="icon"/>
|
|
||||||
<strong>Gitea</strong>
|
|
||||||
</div>
|
|
||||||
<p>{{ _('index.descr:gitea') }}</p>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<p><a href="https://m.lair.moe" target="_blank"><strong>Matrix</strong></a> — {{ _('index.descr:matrix') }}</p>
|
|
||||||
<p><a href="https://c.lair.moe" target="_blank"><strong>Copyparty</strong></a> — {{ _('index.descr:copyparty') }}</p>
|
|
||||||
<p><a href="https://tools.lair.moe" target="_blank"><strong>IT-tools</strong></a> — {{ _('index.descr:tools') }}</p>
|
|
||||||
<p><a href="https://vert.lair.moe" target="_blank"><strong>Vert</strong></a> — {{ _('index.descr:vert') }}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<strong>{{ _('index:altfronts') }}</strong>
|
|
||||||
<p><a href="https://s.lair.moe" target="_blank"><strong>4get</strong></a> — {{ _('index.descr:4get') }}</p>
|
|
||||||
<p><a href="https://tl.lair.moe" target="_blank"><strong>TransLite</strong></a> — {{ _('index.descr:tl') }}</p>
|
|
||||||
<p><a href="https://lyr.lair.moe" target="_blank"><strong>Intellectual</strong></a> — {{ _('index.descr:lyr') }}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<div>
|
|
||||||
<strong>DNS</strong>:
|
|
||||||
<ul>
|
|
||||||
<li><span class="mono">64.188.64.176</span></li>
|
|
||||||
<li>DoT: <span class="mono">lair.moe:853</span></li>
|
|
||||||
<li>DoH: <span class="mono">dns.lair.moe</span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<p>
|
|
||||||
<strong>Yggdrasil</strong>:
|
|
||||||
<span class="mono">200:ee1:bad2:1732:4b91:c3e3:2f08:29b3</span>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
extends root/templates/base.pug
|
||||||
|
|
||||||
|
block title
|
||||||
|
img.icon(src="/static/icon/lair.webp")
|
||||||
|
| Lair
|
||||||
|
|
||||||
|
block content
|
||||||
|
a.block(href="https://b.lair.moe" target="_blank")
|
||||||
|
.header
|
||||||
|
img.icon(src="/static/icon/service/sharkey.webp")
|
||||||
|
strong Sharkey
|
||||||
|
p= _('index.descr:sharkey')
|
||||||
|
|
||||||
|
a.block(href="https://g.lair.moe" target="_blank")
|
||||||
|
.header
|
||||||
|
img.icon(src="/static/icon/service/gitea.webp")
|
||||||
|
strong Gitea
|
||||||
|
p= _('index.descr:gitea')
|
||||||
|
|
||||||
|
.block
|
||||||
|
p
|
||||||
|
a(href="https://m.lair.moe" target="_blank")
|
||||||
|
strong Matrix
|
||||||
|
| — {{ _('index.descr:matrix') }}
|
||||||
|
p
|
||||||
|
a(href="//c.lair.moe" target="_blank")
|
||||||
|
strong Copyparty
|
||||||
|
| — {{ _('index.descr:copyparty') }}
|
||||||
|
p
|
||||||
|
a(href="https://tools.lair.moe" target="_blank")
|
||||||
|
strong IT-tools
|
||||||
|
| — {{ _('index.descr:tools') }}
|
||||||
|
p
|
||||||
|
a(href="https://vert.lair.moe" target="_blank")
|
||||||
|
strong Vert
|
||||||
|
| — {{ _('index.descr:vert') }}
|
||||||
|
|
||||||
|
.block
|
||||||
|
strong= _('index:altfronts')
|
||||||
|
p
|
||||||
|
a(href="https://s.lair.moe" target="_blank")
|
||||||
|
strong 4get
|
||||||
|
| — {{ _('index.descr:4get') }}
|
||||||
|
p
|
||||||
|
a(href="https://tl.lair.moe" target="_blank")
|
||||||
|
strong TransLite
|
||||||
|
| — {{ _('index.descr:tl') }}
|
||||||
|
p
|
||||||
|
a(href="https://lyr.lair.moe" target="_blank")
|
||||||
|
strong Intellectual
|
||||||
|
| — {{ _('index.descr:lyr') }}
|
||||||
|
|
||||||
|
.block
|
||||||
|
div
|
||||||
|
strong DNS
|
||||||
|
| :
|
||||||
|
ul
|
||||||
|
li
|
||||||
|
span.mono 64.188.64.176
|
||||||
|
li
|
||||||
|
| DoT:
|
||||||
|
span.mono lair.moe:853
|
||||||
|
li
|
||||||
|
| DoH:
|
||||||
|
span.mono dns.lair.moe
|
||||||
|
|
||||||
|
p
|
||||||
|
strong Yggdrasil
|
||||||
|
| :
|
||||||
|
span.mono 200:ee1:bad2:1732:4b91:c3e3:2f08:29b3
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
extends base.tmpl
|
extends root/templates/base.pug
|
||||||
|
|
||||||
block title
|
block title
|
||||||
| О нас
|
| О нас
|
||||||
|
|
||||||
block content
|
block content
|
||||||
a.block.green(href="{{ url_for('risdeveau.index') }}")
|
a.block.green(href=url_for('risdeveau.index'))
|
||||||
.header
|
.header
|
||||||
img.icon(src="/static/icon/us/risdeveau.webp")
|
img.icon(src="/static/icon/us/risdeveau.webp")
|
||||||
| Sweetbread
|
| Sweetbread
|
||||||
|
|||||||
+1
-1
@@ -5,4 +5,4 @@ requests
|
|||||||
APScheduler
|
APScheduler
|
||||||
musicbrainzngs
|
musicbrainzngs
|
||||||
python-magic
|
python-magic
|
||||||
pypugjs
|
git+https://github.com/VerySweetBread/pypugjs
|
||||||
|
|||||||
Reference in New Issue
Block a user