Removing uv as package manager. Isues with using it on network volume.

This commit is contained in:
g_it 2026-02-02 09:37:52 +01:00
commit 71130424e3
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627
347 changed files with 1271 additions and 1851 deletions

0
content/overrides/404.html Executable file
View file

54
content/overrides/main.html Executable file
View file

@ -0,0 +1,54 @@
{% extends "base.html" %}
{% block extrahead %}
<meta name="robots"
content="nocache, noindex, noimageindex, nofollow, noarchive, nosnippet, notranslate, nositelinkssearchbox, noai, noimageai">
{% endblock %}
{% block content %}
{{ super() }}
<!-- Script to protect content on the website -->
<script>
// Prevent right-click context menu
document.addEventListener('contextmenu', function (e) {
e.preventDefault();
});
// Prevent text selection
document.addEventListener('selectstart', function (e) {
e.preventDefault();
});
// Block Ctrl+C and other keyboard shortcuts for copying
document.addEventListener('keydown', function (e) {
if (e.ctrlKey && e.key === 'c') { // Blocks Ctrl+C
e.preventDefault();
}
if (e.ctrlKey && e.shiftKey && e.key === 'v') { // Blocks Ctrl+Shift+V
e.preventDefault();
}
});
// Additional measures for image protection
document.addEventListener('contextmenu', function (e) {
if (e.target.tagName.toLowerCase() === 'img') {
e.preventDefault();
}
});
</script>
<!-- Analytics script to measure the performance of the website -->
<script>
window.op = window.op || function () { var n = []; return new Proxy(function () { arguments.length && n.push([].slice.call(arguments)) }, { get: function (t, r) { return "q" === r ? n : function () { n.push([r].concat([].slice.call(arguments))) } }, has: function (t, r) { return "q" === r } }) }();
window.op('init', {
clientId: '4148df94-31a3-47ee-b998-6de681efcbd5',
trackScreenViews: true,
trackOutgoingLinks: true,
trackAttributes: true,
});
</script>
<script src="https://analytics.gugulet.hu/op1.js" defer async></script>
{% endblock %}

View file

@ -0,0 +1,8 @@
<div class="footer">
<div class="menu">
<a href="#"><span class="footer-menu-item">technical</span></a>
<a href="#"><span class="footer-menu-item">visual</span></a>
<a href="#"><span class="footer-menu-item">writing</span></a>
</div>
<div class="version">v202506.1</div>
</div>