增加 个人主页主题
This commit is contained in:
parent
ee5523d17a
commit
32eecc2df5
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"/>
|
||||
<title><?php echo $conf['title']?></title>
|
||||
<meta name="keywords" content="<?php echo $conf['keywords']?>">
|
||||
<meta name="description" content="<?php echo $conf['description']?>">
|
||||
<link rel="icon" href="<?php echo $conf['logo']?>" type="image/x-icon">
|
||||
<link rel="stylesheet" href="<?php echo $cdnpublic ?>/template/page/css/main.css">
|
||||
<style>#bg:after {background-image: url("<?php echo background(); ?>");}</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header id="header">
|
||||
<div class="logo">
|
||||
<img src="<?php echo $conf['logo']?>" class="logo">
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="inner">
|
||||
<?php echo $conf['home-title'] ?>
|
||||
</div>
|
||||
</div>
|
||||
<nav>
|
||||
<ul>
|
||||
<?php
|
||||
$tagslists = $DB->query("SELECT * FROM `lylme_tags`");
|
||||
while ($taglists = $DB->fetch($tagslists)) {
|
||||
echo '
|
||||
<li><a href="' . $taglists["tag_link"] . '"';
|
||||
if ($taglists["tag_target"] == 1) echo ' target="_blant"';
|
||||
echo '>' . $taglists["tag_name"] . '</a></li>
|
||||
';
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<footer id="footer">
|
||||
<p class="copyright"><?php echo $conf['copyright']; ?></p>
|
||||
</footer>
|
||||
</div>
|
||||
<div id="bg">
|
||||
</div>
|
||||
<script src="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-2-M/jquery/3.5.1/jquery.min.js" type="application/javascript"></script>
|
||||
<script src="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/skel/3.0.1/skel.min.js" type="application/javascript"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"author_name": "六零",
|
||||
"author_link": "https://gitee.com/lylme",
|
||||
"theme_name": "mpage",
|
||||
"theme_version": "1.0",
|
||||
"theme_explain": "极简个人主页主题",
|
||||
"theme_demo": "https://spage.lylme.com/theme/page"
|
||||
}
|
Loading…
Reference in New Issue