示例#1
0
<link rel="shortcut icon" type="image/png" href="<?php 
echo Ac::url("assets");
?>
img/favicon.png?r=0" />

<link rel="stylesheet" href="<?php 
echo Ac::url("static");
?>
bootstrap/css/bootstrap.min.css" type="text/css" media="all" />
<link rel="stylesheet" href="<?php 
echo Ac::url("static");
?>
jqueryui/css/bootstrap/theme.css" type="text/css" media="all" />
<link rel="stylesheet" href="<?php 
echo Ac::url("static");
?>
anidcore/css/anidcore-inc.css" type="text/css" media="all" />
<link rel="stylesheet" href="<?php 
echo Ac::url("assets");
?>
css/styles-inc.css" type="text/css" media="all" />

<script type="text/javascript" src="<?php 
echo Ac::url("static");
?>
scripts-inc.js"></script>
<script type="text/javascript" src="<?php 
echo Ac::url("assets");
?>
js/scripts-inc.js"></script>
示例#2
0
 public function assetsUrl()
 {
     $url = Ac::url("dir");
     if (!$this->isMain()) {
         $url .= $this->name . "/";
     }
     if ($this->isMultiTheme) {
         return $url . "themes/" . $this->currentTheme . "/assets/";
     } else {
         return $url . "assets/";
     }
 }
示例#3
0
<div class="hero-unit">
    <h1>Error 404</h1>
    <p>
        Page not found
    </p>
    <p>
        <a class="btn btn-large" href="<?php 
echo Ac::url();
?>
"> « Back</a>
    </p>
</div>

<?php 
include "debug.php";