forked from wehaox/Typecho-Butterfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
18 lines (18 loc) · 853 Bytes
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php $this->need('header_com.php'); ?>
<body style="zoom: 1;">
<div id="web_bg"></div>
<div class="page" id="body-wrap">
<?php if (is_array($this->options->beautifyBlock) && in_array('ShowTopimg',$this->options->beautifyBlock)): ?>
<header class="full_page" id="page-header" style="background-image: url(<?php $this->options->headerimg() ?>)">
<div id="site-info">
<h1 id="site-title"><?php echo $this->options->site_title// $this->options->description() ?></h1>
<div id="site-subtitle">
<span id="subtitle"></span>
</div>
</div>
<div id="scroll-down"><i class="fas fa-angle-down scroll-down-effects porinter"></i></div>
<?php else: ?>
<header class="not-top-img" id="page-header">
<?php endif; ?>
<?php $this->need('public/nav.php'); ?>
</header>