remove forkawesome

This commit is contained in:
Ben Harris 2022-02-17 12:22:30 -05:00
parent e42f6f0449
commit 9ab17ca3ed
5 changed files with 17 additions and 12 deletions

View File

@ -1,14 +1,20 @@
<hr> <hr>
<footer class="text-center"> <footer class="text-center">
<pre> <div class="collapse" id="sshfp">
<pre>
ECDSA: SHA256:R3qNfKIF3IiXhKCbFX6rCKl73yzexi9Wodsow6XFres ECDSA: SHA256:R3qNfKIF3IiXhKCbFX6rCKl73yzexi9Wodsow6XFres
ED25519: SHA256:FErDF9upMkSg/yzw0N7i2o971LT/Bocd1qrDDpE315I ED25519: SHA256:FErDF9upMkSg/yzw0N7i2o971LT/Bocd1qrDDpE315I
RSA: SHA256:JR5oQPfC34ogd/SeIcMpaGR8BiBo4ciI5xWyBVCjj5o</pre> RSA: SHA256:JR5oQPfC34ogd/SeIcMpaGR8BiBo4ciI5xWyBVCjj5o</pre>
</div>
<a href="https://tildegit.org/team/site">site source</a> <a href="https://tildegit.org/team/site">site source</a>
~ ~
<a href="https://tildegit.org/team/site/src/branch/master/<?=str_ireplace("/var/www/tilde.team/", "", $filepath)?>">page source</a> <a href="https://tildegit.org/team/site/src/branch/master/<?=str_ireplace("/var/www/tilde.team/", "", $filepath)?>">page source</a>
~ ~
<a href="https://bhh.sh/donate/">donate</a> <a href="https://bhh.sh/donate/">donate</a>
~
<a data-toggle="collapse" href="#sshfp" aria-expanded="false" aria-controls="sshfp">
ssh fingerprints
</a>
</footer> </footer>
</div> </div>

View File

@ -16,7 +16,6 @@
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="stylesheet" href="/css/hacker.css"> <link rel="stylesheet" href="/css/hacker.css">
<link rel="stylesheet" href="/css/fork-awesome.min.css">
<style> <style>
/* offset #fragments */ /* offset #fragments */
:target:before { :target:before {

View File

@ -20,9 +20,9 @@ unset($navbar);
foreach ($services as $name => $service) { foreach ($services as $name => $service) {
if ($nav) { ?> if ($nav) { ?>
<li><a href="<?=$service["url"]?>" role="menuitem"><i class="fa fa-<?=$service["fa"]?>"></i> <?=$name?></a></li> <li><a href="<?=$service["url"]?>" role="menuitem"><?=$name?></a></li>
<?php } else { ?> <?php } else { ?>
<a href="<?=$service["url"]?>" class="btn btn-default"><i class="fa fa-<?=$service["fa"]?>"></i> <?=$name?></a> <a href="<?=$service["url"]?>" class="btn btn-default"><?=$name?></a>
<?php } <?php }
} }

View File

@ -33,13 +33,11 @@ if (!isset($_GET["page"]) || !file_exists("pages/{$_GET['page']}.md")) {
<hr> <hr>
<h2>pages:</h2> <h2>pages:</h2>
<ul>
<?php foreach (glob("pages/*.md") as $page) { <?php foreach (glob("pages/*.md") as $page) {
$yaml = $parser->parse(file_get_contents($page))->getYAML(); $yaml = $parser->parse(file_get_contents($page))->getYAML();
if (!$yaml["published"]) continue; ?> if (!$yaml["published"]) continue; ?>
<li><a href="<?=basename($page, ".md")?>"><?=$yaml["title"]?></a></li> <a href="?page=<?=basename($page, ".md")?>"><?=$yaml["title"]?></a><br>
<?php } ?> <?php } ?>
</ul>
<?php } else { <?php } else {

View File

@ -26,12 +26,14 @@ use ssh.tilde.team to reach the secondary ip and use 80 and 443 for ssh.
so, for example, you can do: so, for example, you can do:
``` ssh -p 443 user@ssh.tilde.team
ssh -p 443 user@ssh.tilde.team ssh user@tilde.team # this uses port 22, which can be blocked on some networks
ssh user@tilde.team # this uses port 22, which can be blocked on some networks
```
tilde.team's ECDSA key fingerprint is SHA256:R3qNfKIF3IiXhKCbFX6rCKl73yzexi9Wodsow6XFres. tilde.team's fingerprints are:
ECDSA: SHA256:R3qNfKIF3IiXhKCbFX6rCKl73yzexi9Wodsow6XFres
ED25519: SHA256:FErDF9upMkSg/yzw0N7i2o971LT/Bocd1qrDDpE315I
RSA: SHA256:JR5oQPfC34ogd/SeIcMpaGR8BiBo4ciI5xWyBVCjj5o
the key fingerprints are in dns as sshfp records as well, which you can check against the key fingerprints are in dns as sshfp records as well, which you can check against
by setting VerifyHostKeyDNS to yes in your `~/.ssh/config`. by setting VerifyHostKeyDNS to yes in your `~/.ssh/config`.