2020-12-02 01:39:56 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="zh">
|
|
|
|
<head>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="app">
|
|
|
|
<header>
|
|
|
|
<div class="header-main-plane">
|
|
|
|
<div class="header-main container">
|
|
|
|
<?php
|
|
|
|
get_template_part('component/nav-header');
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2021-02-18 10:32:43 +00:00
|
|
|
<div class="top-divider"></div>
|
2020-12-02 01:39:56 +00:00
|
|
|
<main class="container">
|
|
|
|
<div class="html-main">
|
|
|
|
<?php
|
|
|
|
global $set;
|
|
|
|
if ($set['theme']['sidebar_position'] == 1) {
|
|
|
|
?>
|
|
|
|
<div class="post-main">
|
|
|
|
<?php get_template_part('component/post-main-index'); ?>
|
|
|
|
</div>
|
|
|
|
<div class="sidebar">
|
|
|
|
<?php dynamic_sidebar('index_sidebar'); ?>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
} else {
|
|
|
|
?>
|
|
|
|
<div class="sidebar">
|
|
|
|
<?php dynamic_sidebar('index_sidebar'); ?>
|
|
|
|
</div>
|
|
|
|
<div class="post-main">
|
|
|
|
<?php get_template_part('component/post-main-index'); ?>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
|
|
<?php
|
|
|
|
wp_footer();
|
|
|
|
get_footer(); ?>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<?php
|