entire app update:
moder view app with static page, forgejo ci/cd workflow
This commit is contained in:
parent
25c896f809
commit
e6e700c2ee
13 changed files with 460 additions and 28 deletions
10
app/static/js/main.js
Normal file
10
app/static/js/main.js
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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}`;
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue