-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex-page.php
23 lines (23 loc) · 926 Bytes
/
index-page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* index page
*
* @package custom
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<div class="intro">
<div class="avatar">
<a href="<?php $this->options->siteUrl(); ?>"> <img src="<?php $this->options->HomeImg(); ?>"> </a>
</div>
<h2 class="description"><?php $this->options->HomeTitle(); ?></h2>
<div class="social-links">
<a href="" target="_blank" rel="me noopener noreffer"><i class="iconfont icon-github"></i></a>
<a href="" target="_blank" rel="me noopener noreffer"><i class="iconfont icon-twitter"></i></a>
<a href="" rel="me noopener noreffer" target="_blank"><i class="iconfont icon-mail"></i></a>
<a href="" rel="me noopener noreffer" target="_blank"><i class="iconfont icon-telegram-plane"></i></a>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>