?> <!DOCTYPE html> <html lang="en"> <head> <title><?php echo app::$config->core->title; ?> <?php echo date("Y"); ?> </title> <meta charset="utf-8"/> <link href="/favicon.ico" rel="shortcut icon" /> <?php require view::get_special("inc"); ?> </head> <body> <div id="base" class="container-fluid"> <div id="notice"></div> <div class="head"> <?php for ($i = 0; $i < view::num_col('head'); $i++) { ?> <?php require view::get_col('head', $i); ?> <?php } ?>
<?php /** * application_view_cli_core * */ if (cfg::$debug) { require view::get_special("debug"); }
<?php /** * template_default_box_head: * */ ?> <div class="row logo"> <div class="col-md-12 text-center"> <?php require view::get_special("logo"); ?> </div> </div> <div class="row navigation"> <div class="col-md-12 text-center"> <?php require view::get_special("righthead"); ?> </div> </div>