| 12345678910111213141516171819202122232425262728 |
- <?php
- use n2n\web\http\nav\Murl;
- use internship\controller\IsRootController;
- use n2n\core\N2N;
- $view = \n2n\impl\web\ui\view\html\HtmlView::view($this);
- $html = \n2n\impl\web\ui\view\html\HtmlView::html($view);
- $html->meta()->bodyEnd()->addJs('internship-dev/browser/main.js', attrs: ['type' => 'module']);
- $baseUrlStr = (string) $view->buildUrl(Murl::controller(IsRootController::class))->getPath()
- ->chEndingDelimiter(true);
- $html->meta()->head()->addContents(new \n2n\web\ui\Raw('<base href="' . htmlspecialchars($baseUrlStr) . '" />'));
- ?>
- <!doctype html>
- <html class="no-js" lang="<?php $html->out($view->getN2nLocale()->getLanguageId()) ?>">
- <?php $html->headStart() ?>
- <meta charset="<?php $html->out(N2N::CHARSET) ?>" />
- <?php $html->headEnd() ?>
- <?php $html->bodyStart() ?>
- <internship-root>
- </internship-root>
- <?php $html->bodyEnd() ?>
- </html>
|