10 lines
391 B
JavaScript
10 lines
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}`;
|
||
|
|
}
|
||
|
|
});
|