DummyApp/app/static/js/main.js
Norvicdev e6e700c2ee
Some checks failed
Build and Deploy Flask App / test (pull_request) Has been cancelled
Build and Deploy Flask App / build-and-push (pull_request) Has been cancelled
Build and Deploy Flask App / deploy (pull_request) Has been cancelled
entire app update:
moder view app with static page, forgejo ci/cd workflow
2026-08-04 17:29:48 +03:00

10 lines
No EOL
391 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
console.log('Flask CI/CD App загружен!');
// Добавляем время сборки если есть
const footer = document.querySelector('footer p');
if (footer) {
const buildTime = new Date().toLocaleString('ru-RU');
footer.textContent += ` | Собрано: ${buildTime}`;
}
});