Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d92bc2adb | |||
| b64271c9d4 | |||
| 262bcfa2dd | |||
| e5bfcdfe3f | |||
| e1f4021ed5 | |||
| c806dfff6c | |||
| 000465079b | |||
| 97280e2d7c | |||
| 25edd56306 | |||
| e776f09b0f | |||
| c0dc079a71 | |||
| 0a5807e62e | |||
| f60a1940ac | |||
| 7351e28bcd | |||
| 74afee8f5b | |||
| 5f417b433e | |||
| 39d6f469cb | |||
| 78f658241c | |||
| 4622e730c1 | |||
| e6ba705862 | |||
| cfd81884db | |||
| 8c75448836 | |||
| f5afca83d2 |
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- name: Login to Docker Registry
|
- name: Login to Docker Registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: g.codrs.ru
|
registry: g.lair.moe
|
||||||
username: ${{ vars.DOCKER_USERNAME }}
|
username: ${{ vars.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
@@ -26,8 +26,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: ${{ github.event_name == 'push' }}
|
push: ${{ github.event_name == 'push' }}
|
||||||
tags: |
|
tags: g.lair.moe/${{ vars.DOCKER_USERNAME }}/lair.moe:latest
|
||||||
g.codrs.ru/${{ vars.DOCKER_USERNAME }}/codrs.ru:latest
|
|
||||||
g.codrs.ru/${{ vars.DOCKER_USERNAME }}/codrs.ru:${{ github.sha }}
|
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ __pycache__/
|
|||||||
*$py.class
|
*$py.class
|
||||||
.python-version
|
.python-version
|
||||||
|
|
||||||
static/style/*.css
|
*.css
|
||||||
static/style/*.css.map
|
*.css.map
|
||||||
|
|||||||
@@ -1,78 +1,27 @@
|
|||||||
from os import system as console
|
from modules import locale
|
||||||
from configparser import ConfigParser
|
|
||||||
from flask import (
|
from blueprints.root import bp as root_bp
|
||||||
Flask,
|
from blueprints.risdeveau import bp as rdv_bp
|
||||||
g,
|
|
||||||
request,
|
import blueprints.root.modules.style
|
||||||
render_template,
|
import blueprints.risdeveau.modules.style
|
||||||
)
|
|
||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
|
||||||
translations_cache = {}
|
app = Flask(__name__, static_folder=None, subdomain_matching=True)
|
||||||
|
|
||||||
def load_translations(lang):
|
app.before_request(locale.before_request)
|
||||||
if lang not in translations_cache:
|
app.context_processor(locale.inject_translations)
|
||||||
translations_cache[lang] = {}
|
|
||||||
|
|
||||||
try:
|
app.register_blueprint(root_bp)
|
||||||
config = ConfigParser()
|
app.register_blueprint(rdv_bp)
|
||||||
config.read(f'locale/{lang}.ini')
|
|
||||||
for section in config.sections():
|
|
||||||
translations_cache[lang][section] = dict(config.items(section))
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
return translations_cache[lang]
|
|
||||||
|
|
||||||
|
|
||||||
def get_locale():
|
|
||||||
return request.accept_languages.best_match(('en', 'ru', 'de', 'fr', 'ja'), 'en')
|
|
||||||
|
|
||||||
app = Flask(__name__)
|
|
||||||
|
|
||||||
|
|
||||||
@app.before_request
|
|
||||||
def before_request():
|
|
||||||
g.locale = get_locale()
|
|
||||||
g.translations = load_translations(g.locale)
|
|
||||||
|
|
||||||
|
|
||||||
@app.context_processor
|
|
||||||
def inject_translations():
|
|
||||||
def translate(text, **kwargs):
|
|
||||||
if ":" in text:
|
|
||||||
section, key = text.split(":", 1)
|
|
||||||
else:
|
|
||||||
section, key = "common", text
|
|
||||||
|
|
||||||
template = g.translations \
|
|
||||||
.get(section, {}) \
|
|
||||||
.get(key, f"${section}: {key}$")
|
|
||||||
|
|
||||||
try:
|
|
||||||
return template.format(**kwargs)
|
|
||||||
except:
|
|
||||||
return template
|
|
||||||
|
|
||||||
return {'_': translate}
|
|
||||||
|
|
||||||
|
|
||||||
if app.debug:
|
if app.debug:
|
||||||
console("sass static/style/main.scss static/style/main.css")
|
blueprints.root.modules.style.compile_styles()
|
||||||
console("sass static/style/risdeveau.scss static/style/risdeveau.css")
|
blueprints.risdeveau.modules.style.compile_styles()
|
||||||
|
|
||||||
@app.route("/")
|
app.config['SERVER_NAME'] = "localhost:5000"
|
||||||
def index():
|
else:
|
||||||
return render_template('index.html')
|
app.config['SERVER_NAME'] = "lair.moe"
|
||||||
|
|
||||||
@app.route("/host")
|
|
||||||
def host():
|
|
||||||
return render_template('host.html')
|
|
||||||
|
|
||||||
@app.route("/us")
|
|
||||||
def us():
|
|
||||||
return render_template('us.html')
|
|
||||||
|
|
||||||
@app.route("/risdeveau")
|
|
||||||
def risdeveau():
|
|
||||||
return render_template('personal/risdeveau.html')
|
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
import os
|
||||||
|
from pathlib import Path
|
||||||
|
from htmlmin import minify
|
||||||
|
from flask import Blueprint, render_template, send_from_directory, send_file, abort
|
||||||
|
|
||||||
|
bp = Blueprint(
|
||||||
|
"risdeveau",
|
||||||
|
__name__,
|
||||||
|
subdomain="risdeveau",
|
||||||
|
template_folder="..",
|
||||||
|
static_folder=None
|
||||||
|
)
|
||||||
|
|
||||||
|
def render_tmpl(filename: str) -> str:
|
||||||
|
template_path = os.path.join("risdeveau/templates", filename)
|
||||||
|
return minify(
|
||||||
|
render_template(template_path),
|
||||||
|
remove_empty_space=True
|
||||||
|
)
|
||||||
|
|
||||||
|
@bp.route("/static/<path:filename>")
|
||||||
|
def static(filename: str):
|
||||||
|
static_folders = ("static", "../root/static")
|
||||||
|
for dir in static_folders:
|
||||||
|
if os.path.exists(path := os.path.join("blueprints/risdeveau", dir, filename)):
|
||||||
|
return send_file(path)
|
||||||
|
return abort(404)
|
||||||
|
|
||||||
|
@bp.route("/")
|
||||||
|
def index():
|
||||||
|
return render_tmpl('index.html')
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
from os import system as console
|
||||||
|
from os.path import join
|
||||||
|
|
||||||
|
def compile_styles():
|
||||||
|
dir = "blueprints/risdeveau/static/style"
|
||||||
|
files = ("risdeveau",)
|
||||||
|
|
||||||
|
for file in files:
|
||||||
|
console(f"sass {join(dir, file+'.scss')} {join(dir, file+'.css')}")
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
@@ -7,7 +7,7 @@
|
|||||||
<link rel="stylesheet" href="/static/style/risdeveau.css">
|
<link rel="stylesheet" href="/static/style/risdeveau.css">
|
||||||
<link rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp" />
|
<link rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp" />
|
||||||
<script
|
<script
|
||||||
src="https://track.codrs.ru/api/script.js"
|
src="https://track.lair.moe/api/script.js"
|
||||||
data-site-id="1"
|
data-site-id="1"
|
||||||
defer
|
defer
|
||||||
></script>
|
></script>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<a href="{{ url_for('index') }}">Coders Squad</a>
|
<a href="{{ url_for('root.index') }}">Lair</a>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<h3>Development</h3>
|
<h3>Development</h3>
|
||||||
<div class="blocks badges">
|
<div class="blocks badges">
|
||||||
<a class="block" href="//g.codrs.ru/Sweetbread">
|
<a class="block" href="//g.lair.moe/Sweetbread">
|
||||||
<img class="icon" src="/static/icon/service/gitea.webp" />
|
<img class="icon" src="/static/icon/service/gitea.webp" />
|
||||||
Gitea
|
Gitea
|
||||||
</a>
|
</a>
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
<img class="icon" src="https://matrix.org/assets/favicon.ico" />
|
<img class="icon" src="https://matrix.org/assets/favicon.ico" />
|
||||||
Matrix
|
Matrix
|
||||||
</a>
|
</a>
|
||||||
<a class="block" href="//b.codrs.ru/@risdeveau">
|
<a class="block" href="//b.lair.moe/@risdeveau">
|
||||||
<img class="icon" src="/static/icon/service/sharkey.webp" />
|
<img class="icon" src="/static/icon/service/sharkey.webp" />
|
||||||
Fediverse
|
Fediverse
|
||||||
</a>
|
</a>
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
<img class="icon" src="https://cdn.prod.website-files.com/6257adef93867e50d84d30e2/66e3d80db9971f10a9757c99_Symbol.svg" />
|
<img class="icon" src="https://cdn.prod.website-files.com/6257adef93867e50d84d30e2/66e3d80db9971f10a9757c99_Symbol.svg" />
|
||||||
Discord
|
Discord
|
||||||
</a>
|
</a>
|
||||||
<a class="block" href="mailto:risdeveau@codrs.ru">
|
<a class="block" href="mailto:risdeveau@lair.moe">
|
||||||
Mail
|
Mail
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@@ -70,17 +70,17 @@
|
|||||||
<div class="blocks qr">
|
<div class="blocks qr">
|
||||||
<div class="block qr">
|
<div class="block qr">
|
||||||
<p>POL, BNB</p>
|
<p>POL, BNB</p>
|
||||||
<img src="/static/img/risdeveau/wallets/evm.webp">
|
<img src="/static/img/wallets/evm.webp">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="block qr">
|
<div class="block qr">
|
||||||
<p>TON</p>
|
<p>TON</p>
|
||||||
<img src="/static/img/risdeveau/wallets/ton.webp">
|
<img src="/static/img/wallets/ton.webp">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="block qr">
|
<div class="block qr">
|
||||||
<p>XMR</p>
|
<p>XMR</p>
|
||||||
<img src="/static/img/risdeveau/wallets/xmr.webp">
|
<img src="/static/img/wallets/xmr.webp">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
from htmlmin import minify
|
||||||
|
from flask import Blueprint, render_template, request, jsonify
|
||||||
|
|
||||||
|
bp = Blueprint(
|
||||||
|
"root",
|
||||||
|
__name__,
|
||||||
|
template_folder="templates",
|
||||||
|
static_folder="static"
|
||||||
|
)
|
||||||
|
|
||||||
|
def render_tmpl(filename: str) -> str:
|
||||||
|
return minify(
|
||||||
|
render_template(filename),
|
||||||
|
remove_empty_space=True
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/")
|
||||||
|
def index():
|
||||||
|
return render_tmpl('index.html')
|
||||||
|
|
||||||
|
@bp.route("/host")
|
||||||
|
def host():
|
||||||
|
return render_tmpl('host.html')
|
||||||
|
|
||||||
|
@bp.route("/us")
|
||||||
|
def us():
|
||||||
|
return render_tmpl('us.html')
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
from os import system as console
|
||||||
|
from os.path import join
|
||||||
|
|
||||||
|
def compile_styles():
|
||||||
|
dir = "blueprints/root/static/style"
|
||||||
|
files = ("main",)
|
||||||
|
|
||||||
|
for file in files:
|
||||||
|
console(f"sass {join(dir, file+'.scss')} {join(dir, file+'.css')}")
|
||||||
|
After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 59 KiB |
@@ -95,6 +95,10 @@ header {
|
|||||||
background-color: $mantle;
|
background-color: $mantle;
|
||||||
padding: .5rem;
|
padding: .5rem;
|
||||||
font-size: larger;
|
font-size: larger;
|
||||||
|
|
||||||
|
.header-links * + * {
|
||||||
|
padding-left: 1ch;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
@@ -190,6 +194,17 @@ footer {
|
|||||||
border-radius: .2em;
|
border-radius: .2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.webring {
|
||||||
|
margin-top: 1rem;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
a {
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
margin: .1rem !important;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: .5rem;
|
width: .5rem;
|
||||||
@@ -1,17 +1,18 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Coders Squad</title>
|
<title>Lair</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="/static/style/main.css">
|
<link rel="stylesheet" href="/static/style/main.css">
|
||||||
<link rel="icon" type="image/webp" href="/static/icon/codrs.webp" />
|
<link rel="icon" type="image/webp" href="/static/icon/lair.webp" />
|
||||||
<script src="/static/script/copy-mono.js"> </script>
|
<script src="/static/script/copy-mono.js"> </script>
|
||||||
<script
|
<script
|
||||||
src="https://track.codrs.ru/api/script.js"
|
src="https://track.lair.moe/api/script.js"
|
||||||
data-site-id="1"
|
data-site-id="1"
|
||||||
defer
|
defer
|
||||||
></script>
|
></script>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="mock-email" content="admin@example.com">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{% include 'header.tmpl' %}
|
{% include 'header.tmpl' %}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<footer>
|
||||||
|
<div>lair.moe © 2025</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>
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
<header>
|
<header>
|
||||||
{%- if request.path != url_for('index') %}
|
{%- if request.path != url_for('.index') %}
|
||||||
<a href="{{ url_for('index') }}">Coders Squad</a>
|
<a href="{{ url_for('.index') }}">Lair</a>
|
||||||
{%- else %}
|
{%- else %}
|
||||||
<div></div>
|
<div></div>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
<div class="header-links">
|
<div class="header-links">
|
||||||
{%- for (l, t) in (
|
{%- for (l, t) in (
|
||||||
('us', _('about us')),
|
('.us', _('about us')),
|
||||||
('host', _('about host'))
|
('.host', _('about host'))
|
||||||
) %}
|
) %}
|
||||||
{%- if url_for(l) == request.path %}
|
{%- if url_for(l) == request.path %}
|
||||||
<strong>{{ t }}</strong>
|
<strong>{{ t }}</strong>
|
||||||
@@ -11,11 +11,11 @@
|
|||||||
<div class="block">
|
<div class="block">
|
||||||
<strong>{{ _("host:specifications") }}</strong>:
|
<strong>{{ _("host:specifications") }}</strong>:
|
||||||
<ul>
|
<ul>
|
||||||
<li>CPU: Ryzen i9@3.4GHz (4 cores)</li>
|
<li>CPU: Ryzen 9@3.4GHz (4 cores)</li>
|
||||||
<li>RAM: 8 GiB</li>
|
<li>RAM: 8 GB</li>
|
||||||
<li>SSD: 150 GB</li>
|
<li>SSD: 150 GB</li>
|
||||||
<li>ETH: 500Mb/s</li>
|
<li>ETH: 500Mb/s</li>
|
||||||
<li>Loc: Deutchland, Frankfurt am Mein</li>
|
<li>Loc: Deutschland, Frankfurt am Main</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@@ -1,19 +1,19 @@
|
|||||||
{% extends 'base.tmpl' %}
|
{% extends 'base.tmpl' %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
<img src="/static/icon/codrs.webp" class="icon" />
|
<img src="/static/icon/lair.webp" class="icon" />
|
||||||
Coders Squad
|
Lair
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<a href="https://b.codrs.ru" target="_blank" class="block">
|
<a href="https://b.lair.moe" target="_blank" class="block">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<img src="/static/icon/service/sharkey.webp" class="icon"/>
|
<img src="/static/icon/service/sharkey.webp" class="icon"/>
|
||||||
<strong>Sharkey</strong>
|
<strong>Sharkey</strong>
|
||||||
</div>
|
</div>
|
||||||
<p>{{ _('index.descr:sharkey') }}</p>
|
<p>{{ _('index.descr:sharkey') }}</p>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://g.codrs.ru" target="_blank" class="block">
|
<a href="https://g.lair.moe" target="_blank" class="block">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<img src="/static/icon/service/gitea.webp" class="icon"/>
|
<img src="/static/icon/service/gitea.webp" class="icon"/>
|
||||||
<strong>Gitea</strong>
|
<strong>Gitea</strong>
|
||||||
@@ -23,10 +23,16 @@
|
|||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<p><a href="https://m.codrs.ru" target="_blank"><strong>Matrix</strong></a> — {{ _('index.descr:matrix') }}</p>
|
<p><a href="https://m.codrs.ru" target="_blank"><strong>Matrix</strong></a> — {{ _('index.descr:matrix') }}</p>
|
||||||
<p><a href="https://c.codrs.ru" target="_blank"><strong>Copyparty</strong></a> — {{ _('index.descr:copyparty') }}</p>
|
<p><a href="https://c.lair.moe" target="_blank"><strong>Copyparty</strong></a> — {{ _('index.descr:copyparty') }}</p>
|
||||||
<p><a href="https://s.codrs.ru" target="_blank"><strong>4get</strong></a> — {{ _('index.descr:4get') }}</p>
|
<p><a href="https://tools.lair.moe" target="_blank"><strong>IT-tools</strong></a> — {{ _('index.descr:tools') }}</p>
|
||||||
<p><a href="https://tools.codrs.ru" 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>
|
||||||
<p><a href="https://vert.codrs.ru" 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>
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
@@ -34,8 +40,8 @@
|
|||||||
<strong>DNS</strong>:
|
<strong>DNS</strong>:
|
||||||
<ul>
|
<ul>
|
||||||
<li><span class="mono">64.188.64.176</span></li>
|
<li><span class="mono">64.188.64.176</span></li>
|
||||||
<li>DoT: <span class="mono">codrs.ru:853</span></li>
|
<li>DoT: <span class="mono">lair.moe:853</span></li>
|
||||||
<li>DoH: <span class="mono">dns.codrs.ru</span></li>
|
<li>DoH: <span class="mono">dns.lair.moe</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
@@ -48,9 +54,15 @@
|
|||||||
{{
|
{{
|
||||||
_('index:bottom_text',
|
_('index:bottom_text',
|
||||||
glitchtip='<a href="https://bug.codrs.ru" target="_blank"><strong>GlitchTip</strong></a>',
|
glitchtip='<a href="https://bug.codrs.ru" target="_blank"><strong>GlitchTip</strong></a>',
|
||||||
baikal='<a href="https://dav.codrs.ru" target="_blank"><strong>Baikal</strong></a>',
|
baikal='<a href="https://dav.lair.moe" target="_blank"><strong>Baikal</strong></a>',
|
||||||
freshrss='<a href="https://rss.codrs.ru" target="_blank"><strong>FreshRSS</strong></a>',
|
freshrss='<a href="https://rss.lair.moe" target="_blank"><strong>FreshRSS</strong></a>',
|
||||||
) | safe
|
) | safe
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="webring">
|
||||||
|
<a class="block" href="https://webring.otomir23.me/lair/prev"><</a>
|
||||||
|
<a class="block" href="https://webring.otomir23.me/">Otoring</a>
|
||||||
|
<a class="block" href="https://webring.otomir23.me/lair/next">></a>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
{% block title %}О нас{% endblock %}
|
{% block title %}О нас{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<a href="{{ url_for('risdeveau') }}" class="block green">
|
<a href="{{ url_for('risdeveau.index') }}" class="block green">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<img src="/static/icon/us/risdeveau.webp" class="icon"/>
|
<img src="/static/icon/us/risdeveau.webp" class="icon"/>
|
||||||
Sweetbread
|
Sweetbread
|
||||||
@@ -7,6 +7,7 @@ about host = Über Server
|
|||||||
|
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
|
altfronts = Altfronts
|
||||||
bottom_text = Außerdem bieten wir {glitchtip}, {baikal} und {freshrss} für Mitglieder unserer Gruppe an!
|
bottom_text = Außerdem bieten wir {glitchtip}, {baikal} und {freshrss} für Mitglieder unserer Gruppe an!
|
||||||
|
|
||||||
[index.descr]
|
[index.descr]
|
||||||
@@ -17,6 +18,8 @@ copyparty = Cloud-Dateispeicher
|
|||||||
4get = Proxy-Suchmaschine
|
4get = Proxy-Suchmaschine
|
||||||
tools = Satz verschiedener Werkzeuge
|
tools = Satz verschiedener Werkzeuge
|
||||||
vert = Dateiumwandler
|
vert = Dateiumwandler
|
||||||
|
tl = Altfront für beliebte Suchmaschinen
|
||||||
|
lyr = Altfront für Genius
|
||||||
|
|
||||||
|
|
||||||
[host]
|
[host]
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ about host = About host
|
|||||||
|
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
|
altfronts = Altfronts
|
||||||
bottom_text = We also have {glitchtip}, {baikal} and {freshrss} for members of our squad!
|
bottom_text = We also have {glitchtip}, {baikal} and {freshrss} for members of our squad!
|
||||||
|
|
||||||
[index.descr]
|
[index.descr]
|
||||||
@@ -17,6 +18,8 @@ copyparty = cloud file storage
|
|||||||
4get = proxy search engine
|
4get = proxy search engine
|
||||||
tools = set of various tools
|
tools = set of various tools
|
||||||
vert = file converter
|
vert = file converter
|
||||||
|
tl = altfront for popular search engines
|
||||||
|
lyr = altfront for Genius
|
||||||
|
|
||||||
|
|
||||||
[host]
|
[host]
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ about host = À propos de serveur
|
|||||||
|
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
|
altfronts = Altfronts
|
||||||
bottom_text = On a aussi {glitchtip}, {baikal} et {freshrss} pour les membres du groupe !
|
bottom_text = On a aussi {glitchtip}, {baikal} et {freshrss} pour les membres du groupe !
|
||||||
|
|
||||||
[index.descr]
|
[index.descr]
|
||||||
@@ -17,6 +18,8 @@ copyparty = Stockage de fichiers en cloud
|
|||||||
4get = Moteur de recherche proxy
|
4get = Moteur de recherche proxy
|
||||||
tools = ensemble d'outils variés
|
tools = ensemble d'outils variés
|
||||||
vert = convertisseur de fichiers
|
vert = convertisseur de fichiers
|
||||||
|
tl = altfront pour les moteurs de recherche populaires
|
||||||
|
lyr = altfront pour Genius
|
||||||
|
|
||||||
|
|
||||||
[host]
|
[host]
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ about host = サーバーについて
|
|||||||
|
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
|
altfronts = 代替フロントエンド
|
||||||
bottom_text = メンバーには {glitchtip}、{baikal}、{freshrss} も使えるよ!
|
bottom_text = メンバーには {glitchtip}、{baikal}、{freshrss} も使えるよ!
|
||||||
|
|
||||||
[index.descr]
|
[index.descr]
|
||||||
@@ -17,6 +18,8 @@ copyparty = クラウドファイルストレージ
|
|||||||
4get = プロキシ検索エンジン
|
4get = プロキシ検索エンジン
|
||||||
tools = 様々なツールのセット
|
tools = 様々なツールのセット
|
||||||
vert = ファイル変換ツール
|
vert = ファイル変換ツール
|
||||||
|
tl = 人気検索エンジン向けの代替フロントエンド
|
||||||
|
lyr = Genius向けの代替フロントエンド
|
||||||
|
|
||||||
|
|
||||||
[host]
|
[host]
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ about host = О хосте
|
|||||||
|
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
|
altfronts = Альтфронты
|
||||||
bottom_text = Ещё у нас есть {glitchtip}, {baikal} и {freshrss} для участников нашей группы!
|
bottom_text = Ещё у нас есть {glitchtip}, {baikal} и {freshrss} для участников нашей группы!
|
||||||
|
|
||||||
[index.descr]
|
[index.descr]
|
||||||
@@ -17,6 +18,8 @@ copyparty = облачное хранилище файлов
|
|||||||
4get = прокси-поисковик
|
4get = прокси-поисковик
|
||||||
tools = набор разнообразных утилит
|
tools = набор разнообразных утилит
|
||||||
vert = конвертация файлов
|
vert = конвертация файлов
|
||||||
|
tl = альтфронт для популярных поисковиков
|
||||||
|
lyr = альтфронт для Genius
|
||||||
|
|
||||||
|
|
||||||
[host]
|
[host]
|
||||||
|
|||||||
@@ -0,0 +1,47 @@
|
|||||||
|
from configparser import ConfigParser
|
||||||
|
from flask import g, request
|
||||||
|
|
||||||
|
|
||||||
|
translations_cache = {}
|
||||||
|
|
||||||
|
|
||||||
|
def load_translations(lang):
|
||||||
|
if lang not in translations_cache:
|
||||||
|
translations_cache[lang] = {}
|
||||||
|
|
||||||
|
try:
|
||||||
|
config = ConfigParser()
|
||||||
|
config.read(f'locale/{lang}.ini')
|
||||||
|
for section in config.sections():
|
||||||
|
translations_cache[lang][section] = dict(config.items(section))
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return translations_cache[lang]
|
||||||
|
|
||||||
|
def get_locale():
|
||||||
|
return request.accept_languages.best_match(
|
||||||
|
('en', 'ru', 'de', 'fr', 'ja'),
|
||||||
|
) or 'en'
|
||||||
|
|
||||||
|
def before_request():
|
||||||
|
g.locale = get_locale()
|
||||||
|
g.translations = load_translations(g.locale)
|
||||||
|
|
||||||
|
def inject_translations():
|
||||||
|
def translate(text, **kwargs):
|
||||||
|
if ":" in text:
|
||||||
|
section, key = text.split(":", 1)
|
||||||
|
else:
|
||||||
|
section, key = "common", text
|
||||||
|
|
||||||
|
template = g.translations \
|
||||||
|
.get(section, {}) \
|
||||||
|
.get(key, f"${section}: {key}$")
|
||||||
|
|
||||||
|
try:
|
||||||
|
return template.format(**kwargs)
|
||||||
|
except:
|
||||||
|
return template
|
||||||
|
|
||||||
|
return {'_': translate}
|
||||||
@@ -1,2 +1,3 @@
|
|||||||
Flask==3.1.1
|
Flask==3.1.1
|
||||||
gunicorn
|
gunicorn
|
||||||
|
htmlmin2
|
||||||
|
|||||||
@@ -3,17 +3,16 @@ let
|
|||||||
pypkgs = pkgs.python3Packages;
|
pypkgs = pkgs.python3Packages;
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
name = "codrs.ru";
|
name = "lair.moe";
|
||||||
|
|
||||||
buildInputs = with pypkgs; [
|
buildInputs = with pypkgs; [
|
||||||
python
|
python
|
||||||
virtualenv
|
virtualenv
|
||||||
# pkgs.nodejs
|
|
||||||
pkgs.nodePackages.sass
|
pkgs.nodePackages.sass
|
||||||
];
|
];
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
if [ ! -d "venv" ]; then
|
if [ ! -d ".venv" ]; then
|
||||||
python -m venv .venv
|
python -m venv .venv
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 5.0 KiB |
@@ -1,5 +0,0 @@
|
|||||||
<footer>
|
|
||||||
<div>codrs.ru © 2025</div>
|
|
||||||
<div><a href="https://g.codrs.ru/Sweetbread/codrs.ru">{{ _('site source') }}</a></div>
|
|
||||||
<div>{{ _('contact us') }}: <a href="mailto:admin@codrs.ru">admin@codrs.ru</a></div>
|
|
||||||
</footer>
|
|
||||||