sky/friends.php

37 lines
1.1 KiB
PHP
Raw Normal View History

2021-08-13 16:20:03 +08:00
<?php
/**
* Sky 友情链接
*
* @package custom
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
if ($this->options->friendAvatar == 'icon') $avatarUrl = 'https://www.google.cn/s2/favicons?domain={url}';
else $avatarUrl = '{image}';
?>
<div class="col mt-5" id="main" role="main">
<article>
<h1 class="font-weight-bold post-title">友情链接</h1>
2021-09-24 17:02:19 +08:00
<hr>
<?php echo exContent($this->content); ?>
2021-08-13 16:20:03 +08:00
<div class="row">
<?php
Links_Plugin::output($pattern='
<div class="col-12 col-sm-6 col-md-4 pt-2 pb-2">
<a class="friend btn btn-secondary btn-lg text-left w-100" role="button" href="{url}" target="_blank">
<img class="avatar position-absolute" src="'.$avatarUrl.'" alt="{name}"">
<div class="position-relative text-capitalize text-truncate ml-6">
<span class="font-weight-900">{name}</span> <br>
<span class="text-gray">{description}</span>
</div>
</a>
</div>
', $links_num=0, $sort='friends'); ?>
</div>
</article>
</div>
<?php $this->need('footer.php');
?>