Update FTP sync cache with modified file sizes and add new template components

This commit is contained in:
2025-03-11 21:54:11 +01:00
parent 0912631ee1
commit 4fc76852a5
4 changed files with 1759 additions and 1670 deletions

View File

@@ -26,9 +26,9 @@
"autoload": {}, "autoload": {},
"b2b_users.csv": { "b2b_users.csv": {
"type": "-", "type": "-",
"size": 379, "size": 420,
"lmtime": 0, "lmtime": 0,
"modified": false "modified": true
}, },
"cache": {}, "cache": {},
"config.php": { "config.php": {
@@ -97,7 +97,46 @@
}, },
"temp": {}, "temp": {},
"templates": {}, "templates": {},
"templates_user": {}, "templates_user": {
"components": {
"ContactForm.php": {
"type": "-",
"size": 7616,
"lmtime": 1741718164519,
"modified": false
},
"ContactMini.php": {
"type": "-",
"size": 1227,
"lmtime": 0,
"modified": false
},
"Footer.php": {
"type": "-",
"size": 1156,
"lmtime": 0,
"modified": false
},
"NavMenu.php": {
"type": "-",
"size": 7589,
"lmtime": 0,
"modified": false
},
"OurProjects.php": {
"type": "-",
"size": 5412,
"lmtime": 0,
"modified": false
},
"detect-language.php": {
"type": "-",
"size": 1745,
"lmtime": 0,
"modified": false
}
}
},
"upload": {} "upload": {}
} }
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1290,8 +1290,7 @@ header {
} }
} }
.col-right { .col-right {}
}
@include respond-below(md) { @include respond-below(md) {
&::before { &::before {
@@ -2020,3 +2019,54 @@ header {
} }
} }
} }
.article-1 {
h2 {
font-size: 20px;
margin-bottom: 15px;
}
ul {
margin: 0 0 50px 0;
padding: 0;
list-style-type: none;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
li {
a {
border: 1px solid #000;
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
color: #000;
transition: ease 0.3s all;
position: relative;
gap: 10px;
&::after {
position: relative;
top: -2px;
content: '';
display: flex;
background: url('/upload/filemanager/Icons/icon-file.svg') no-repeat center;
height: 20px;
width: 20px;
background-size: contain;
}
&:hover {
color: #FFF;
background: #000;
}
}
}
}
hr {
margin-bottom: 50px;
}
}