Compare commits

...

2 Commits

Author SHA1 Message Date
Arsen Mirzaev Tatyano-Muradovich d3a47b04fb body margin unset 2025-04-10 22:47:34 +07:00
Arsen Mirzaev Tatyano-Muradovich 1a05a0413d returned templater 2025-04-10 22:33:05 +07:00
2 changed files with 7 additions and 0 deletions

View File

@ -74,6 +74,9 @@ class core extends controller
// Blocking requests from CloudFlare (better to write this blocking into nginx config file)
if (isset($$_SERVER['HTTP_USER_AGENT']) && $$_SERVER['HTTP_USER_AGENT'] === 'nginx-ssl early hints') return status::bruh->label;
// Initializing the view template engine instance
$$this->view = new templater($$this->session);
// For the extends system
parent::__construct(core: $$core);
}

View File

@ -1,5 +1,9 @@
@charset "UTF-8";
body {
margin: unset;
}
main {
display: flex;
flex-direction: column;