-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaside.php
More file actions
19 lines (19 loc) · 853 Bytes
/
aside.php
File metadata and controls
19 lines (19 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<aside class="aside">
<?= self::widget('form/search'); ?>
<?php if ($site->is('home')): ?>
<?= self::widget('page/random'); ?>
<?php else: ?>
<?= self::widget('page/recent'); ?>
<?php endif; ?>
<?= self::widget('list', [
'list' => [
'<a href="https://facebook.com/ta.tau.taufik" target="_blank">Facebook</a>',
'<a href="https://github.com/taufik-nurrohman" target="_blank">GitHub</a>',
'<a href="https://instagram.com/ta.tau.taufik" target="_blank">Instagram</a>',
'<a href="https://open.spotify.com/user/21ar3ejto7p7p3ybiq5obhrpq" target="_blank">Spotify</a>',
'<a href="https://t.me/taufik_nurrohman" target="_blank">Telegram</a>',
'<a href="https://twitter.com/ta_tau_taufik" target="_blank">Twitter</a>'
],
'title' => i('Social Links')
]); ?>
</aside>