20 lines
479 B
PHP
20 lines
479 B
PHP
<!DOCTYPE html>
|
|
<html lang="cn">
|
|
|
|
<head>
|
|
<?php include('_includes/head.php'); ?>
|
|
</head>
|
|
|
|
<body class="mdui-drawer-body-left mdui-theme-primary-indigo mdui-theme-accent-indigo mdui-appbar-with-toolbar">
|
|
<?php include('_includes/header.php'); ?>
|
|
<?php include('_includes/sidebar.php'); ?>
|
|
<div class="mdui-container">
|
|
<h1>分类</h1>
|
|
<div class="ui existing segment">
|
|
<?php echo $view_category?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|