mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
73 lines
3.2 KiB
HTML
73 lines
3.2 KiB
HTML
{@
|
|
$lang_type = Context::getLangType();
|
|
$ssl_actions = Context::getSSLActions();
|
|
$css_files=Context::getCssFile();
|
|
$js_files=Context::getJsFile();
|
|
}
|
|
<!DOCTYPE html>
|
|
<html lang="{str_replace('jp','ja',$lang_type)}" class="xe-mobilelayout">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<block loop="Context::getMetaTag() => $no, $val">
|
|
<meta http-equiv="{$val['name']}"|cond="$val['is_http_equiv']" name="{$val['name']}"|cond="!$val['is_http_equiv']" content="{$val['content']}">
|
|
</block>
|
|
<!--// TITLE -->
|
|
<title>{Context::getBrowserTitle()}</title>
|
|
<!-- CSS -->
|
|
<block loop="$css_files=>$key,$css_file">
|
|
<block cond="$css_file['targetie']"><!--[if {$css_file['targetie']}]><block cond="stripos($css_file['targetie'], 'gt') === 0"><!--></block></block>
|
|
<link rel="stylesheet" href="{$css_file['file']}" media="{$css_file['media']}"|cond="$css_file['media'] != 'all'" />
|
|
<block cond="$css_file['targetie']"><block cond="stripos($css_file['targetie'], 'gt') === 0"><!--</block><![endif]--></block>
|
|
</block>
|
|
<!-- JS -->
|
|
<block loop="$js_files=>$key,$js_file">
|
|
<block cond="$js_file['targetie']"><!--[if {$js_file['targetie']}]><block cond="stripos($js_file['targetie'], 'gt') === 0"><!--></block></block>
|
|
<script src="{$js_file['file']}"></script>
|
|
<block cond="$js_file['targetie']"><block cond="stripos($js_file['targetie'], 'gt') === 0"><!--</block><![endif]--></block>
|
|
</block>
|
|
|
|
<!--// RSS -->
|
|
<!--@if($rss_url)-->
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="{$rss_url}" />
|
|
<link rel="alternate" type="application/atom+xml" title="Atom" href="{$atom_url}" />
|
|
<!--@end-->
|
|
<!--@if($general_rss_url)-->
|
|
<link rel="alternate" type="application/rss+xml" title="Site RSS" href="{$general_rss_url}" />
|
|
<link rel="alternate" type="application/atom+xml" title="Site Atom" href="{$general_atom_url}" />
|
|
<!--@end-->
|
|
|
|
<!--// ICON-->
|
|
<link cond="$favicon_url" rel="shortcut icon" href="{$favicon_url}" />
|
|
<link cond="$mobicon_url" rel="apple-touch-icon" href="{$mobicon_url}" />
|
|
{Context::getHtmlHeader()}
|
|
<script>
|
|
//<![CDATA[
|
|
var current_url = "{$current_url}";
|
|
var request_uri = "{$request_uri}";
|
|
<block cond="$vid">var xeVid = "{$vid}";</block>
|
|
var current_mid = "{$mid}";
|
|
var waiting_message = "{$lang->msg_call_server}";
|
|
var ssl_actions = new Array(<!--@if(count($ssl_actions))-->"{implode('","',array_keys($ssl_actions))}"<!--@end-->);
|
|
var default_url = "{Context::getDefaultUrl()}";
|
|
<block cond="Context::get('_http_port')">var http_port = {Context::get("_http_port")};</block>
|
|
<block cond="Context::get('_https_port')">var https_port = {Context::get("_https_port")};</block>
|
|
<block cond="Context::get('_use_ssl') && Context::get('_use_ssl') == 'always'">var enforce_ssl = true;</block>
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body{Context::getBodyClass()}>
|
|
{Context::getBodyHeader()}
|
|
{$content}
|
|
{Context::getHtmlFooter()}
|
|
<div id="rhymix_debug_panel"></div>
|
|
<div id="rhymix_debug_button"></div>
|
|
<!--// ETC -->
|
|
{@ $js_body_files = Context::getJsFile('body') }
|
|
<!--@foreach($js_body_files as $key => $js_file)-->
|
|
<!--@if($js_file['targetie'])--><!--[if {$js_file['targetie']}]><!--@end-->
|
|
<script src="{$js_file['file']}"></script>
|
|
<!--@if($js_file['targetie'])--><![endif]--><!--@end-->
|
|
<!--@end-->
|
|
</body>
|
|
</html>
|