✏️ 正在编辑: layout_externo.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/layouts/scripts/layout_externo.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php echo $this->doctype() ?> <html lang="pt-br"> <head> <meta charset="UTF-8" /> <title>Yuppie tech - Mais agilidade para o seu negócio!</title> <?php echo $this->headStyles( array_merge([ ['global.min.css', true], ['swal.min.css', true], ['client.css', false, '/specific/'], ['jquery-ui-cupertino.css', false, '/styles/jquery/'], ['multiple-select.css', false, '/styles/jquery/'] ], $this->styles ? [$this->styles] : [])); ?> </head> <body class="bg_login"> <div id="container"> <div id="logo_externo"></div> <h1> <?php echo $this->title ?? ''; ?> </h1> <div id="content_externo"> <?php echo $this->layout()->content; echo $this->render('full-loading.phtml'); ?> </div> </div> <script> var baseUrl = '<?php echo $this->baseUrl(); ?>'; </script> <?php echo $this->headScripts( array_merge([ ['jquery/jquery.min.js', false], ['jquery/jquery.multiple.select.js', false], ['jquery/jquery-ui.min.js', false], ['jquery.treetable.js', true], ['global.min.js', true], ['jquery.min.js', true], ['swal.min.js', false], ['jquery/jquery.form.min.js', false], ['jquery-bubble-popup-v3.min.js', false, '/components/jquery-bubble/scripts/'], ], $this->scripts ? [$this->scripts] : [])); ?> <?php if (!empty($this->recaptcha)): ?> <script src='https://www.google.com/recaptcha/api.js' async defer></script> <?php endif; ?> <?php if (!empty($this->erro)): ?> <script> showError('<?php echo $this->erro; ?>'); </script> <?php endif; ?> </body> </html>
💾 保存文件
← 返回文件管理器