-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard.php
More file actions
61 lines (61 loc) · 2.68 KB
/
Copy pathcard.php
File metadata and controls
61 lines (61 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
/**
* 卡片页
* @package custom
*/
/**
* Made with love By 狱杰1Jnver
* Link: https://yujienb.cn/
* Theme: DARLING
*/
?>
<?php $this->need('/includes/header.php')?>
<link rel="stylesheet" href="<?php $this->options->themeURL('static/contact.css')?>">
<link rel="shortcut icon" href="<?php $this->options->themeUrl('favicon.ico')?>" type="image/x-icon">
<link rel="stylesheet" href="<?php $this->options->themeUrl('static/font_tt3zqcqts1k/iconfont.css')?>">
<body>
<div class="main">
<div class="head-mod">
<img src="<?php $this->options->themeUrl('images/head.png')?>" alt="" class="head-img">
</div>
<div class="info-mod">
<h1><?php $this->author(); ?></h1>
<span class="intr">
<?php $this->options->crad_des();?>
</span>
<hr>
<div class="attribute">
<span class="sex">
<?php $this->options->card_sex();?>
</span>
<span class="age">
<?php $this->options->card_age();?>
</span>
<span class="marry"><?php $this->options->crad_marry();?></span>
</div>
<div class="contact">
<?php if($this->options->card_link_live):?>
<a href="<?php $this->options->card_link_live();?>"><span class="iconfont link-btn icon-live"></span></a>
<?php endif;?>
<?php if($this->options->card_link_github):?>
<a href="<?php $this->options->card_link_github();?>"><span class="iconfont link-btn icon-github"></span></a>
<?php endif;?>
<?php if($this->options->card_link_weibo):?>
<a href="<?php $this->options->card_link_weibo();?>"><span class="iconfont link-btn icon-weibo"></span></a>
<?php endif;?>
<?php if($this->options->card_link_instagram):?>
<a href="<?php $this->options->card_link_instagram();?>"><span class="iconfont link-btn icon-instagram"></span></a>
<?php endif;?>
<?php if($this->options->card_link_qq):?>
<a href="<?php $this->options->card_link_qq();?>"><span class="iconfont link-btn icon-QQ"></span></a>
<?php endif;?>
<?php if($this->options->card_link_wechat):?>
<a href="<?php $this->options->card_link_wechat();?>"><span class="iconfont link-btn icon-wechat-fill"></span></a>
<?php endif;?>
</div>
</div>
</div>
<?php $this->need('/includes/footer.php');?>
</body>
</html>