tilde/links.php

69 lines
1.6 KiB
PHP
Raw Normal View History

2018-07-23 00:28:25 +00:00
<?php
function faclass($icon) {
return "fa fa-fw fa-$icon";
}
$links = [
"email" => [
"href" => "mailto:ben@tilde.team",
"icon" => "envelope"
],
"pgp pubkey" => [
2018-08-01 03:51:07 +00:00
"href" => "benharri.asc",
2018-07-23 00:28:25 +00:00
"icon" => "lock"
],
"blog" => [
"href" => "blog/",
"icon" => "rss"
],
"github" => [
"href" => "https://github.com/benharri",
"icon" => "github"
],
"tildegit" => [
2018-09-20 22:37:39 +00:00
"href" => "https://tildegit.org/ben",
2018-07-23 00:28:25 +00:00
"icon" => "code-fork"
],
2019-01-25 14:42:40 +00:00
"srht" => [
"href" => "https://git.sr.ht/~benharri",
"icon" => "circle-o"
],
2018-07-23 00:28:25 +00:00
"stack overflow" => [
"href" => "https://stackoverflow.com/users/6352706/ben-harris",
"icon" => "stack-overflow"
],
"my git guide" => [
"href" => "https://benharri.github.io/learngit/",
"icon" => "git"
],
"keybase" => [
"href" => "https://keybase.io/bharris",
"icon" => "key"
],
2018-07-23 00:28:25 +00:00
"my personal site" => [
"href" => "https://benharr.is",
"icon" => "globe"
],
"software design pattern book" => [
"href" => "patterns/",
"icon" => "book"
],
"win solitaire" => [
"href" => "soli/",
"icon" => "gamepad"
],
"mastodon" => [
"href" => "https://tilde.zone/~ben",
2018-10-31 22:13:40 +00:00
"icon" => "mastodon-alt",
"extra_attrs" => 'rel="me"'
2018-07-23 00:28:25 +00:00
],
];
2020-02-04 01:51:37 +00:00
?>
2018-07-23 00:28:25 +00:00
2020-02-04 01:51:37 +00:00
<?php foreach ($links as $name => $link): ?>
-&gt; <a <?=$link["extra_attrs"] ?? ""?> href="<?=$link["href"]?>">
<i class="<?=faclass($link["icon"])?>"></i> <?=$name?>
</a>
<br>
<?php endforeach; ?>
2018-07-23 00:28:25 +00:00