Use tabs instead of spaces

This commit is contained in:
Robert Miles 2018-06-20 12:22:43 -04:00
parent 15f8031dec
commit 2a908bc126
2 changed files with 22 additions and 22 deletions

View File

@ -1,15 +1,15 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="https://tilde.team/css/hacker.css"> <link rel="stylesheet" href="https://tilde.team/css/hacker.css">
<link rel="stylesheet" href="https://tilde.team/css/forkawesome.css"> <link rel="stylesheet" href="https://tilde.team/css/forkawesome.css">
<title>tilde.chat | <?=($title ?? 'irc network for tildes')?></title> <title>tilde.chat | <?=($title ?? 'irc network for tildes')?></title>
<meta property="og:title" content="tilde.chat | <?=($title ?? 'irc network for tildes')?>"> <meta property="og:title" content="tilde.chat | <?=($title ?? 'irc network for tildes')?>">
<meta property="og:url" content="https://tilde.chat<?=$_SERVER['REQUEST_URI']?>"> <meta property="og:url" content="https://tilde.chat<?=$_SERVER['REQUEST_URI']?>">
<meta property="og:description" content="<?=($desc??($title??'the home of an irc network for tildes'))?>"> <meta property="og:description" content="<?=($desc??($title??'the home of an irc network for tildes'))?>">
<meta property="og:image" content="https://tilde.chat/ogpempty.png"> <meta property="og:image" content="https://tilde.chat/ogpempty.png">
<meta property="og:site_name" content="tilde.chat"> <meta property="og:site_name" content="tilde.chat">
<meta property="og:type" content="website"> <meta property="og:type" content="website">
</head> </head>
<body style="padding-top: 70px;"> <body style="padding-top: 70px;">

View File

@ -1,19 +1,19 @@
<?php include 'header.php'; ?> <?php include 'header.php'; ?>
<h1>tilde.chat</h1> <h1>tilde.chat</h1>
<hr> <hr>
<p>hey hi</p> <p>hey hi</p>
<p>you can connect to tilde.chat on port 6697 with ssl</p> <p>you can connect to tilde.chat on port 6697 with ssl</p>
<p>or localhost 6667 from a shell on any of the member tildes :)</p> <p>or localhost 6667 from a shell on any of the member tildes :)</p>
<p>feel free to <a href="https://ben.tilde.team">contact me</a> for more info</p> <p>feel free to <a href="https://ben.tilde.team">contact me</a> for more info</p>
<h3>member tildes</h3> <h3>member tildes</h3>
<ul> <ul>
<?php <?php
$members = json_decode(file_get_contents("members.json"))->members; $members = json_decode(file_get_contents("members.json"))->members;
foreach($members as $member) { foreach($members as $member) {
echo "<li><a href='{$member->link}'>{$member->name}</a></li>\n"; echo "<li><a href='{$member->link}'>{$member->name}</a></li>\n";
} }
?> ?>
</ul> </ul>
<?php include 'footer.php'; ?> <?php include 'footer.php'; ?>