inital commit

This commit is contained in:
Russell R. 2020-05-08 19:02:57 +00:00
commit 6ce1762d5d
5 changed files with 44 additions and 0 deletions

BIN
avatar.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 916 B

2
blog/.config Executable file
View File

@ -0,0 +1,2 @@
global_title="my tildelog"
global_description="a blog about tildes"

4
blog/index.html Executable file
View File

@ -0,0 +1,4 @@
<html>
<pre>cd</pre> to your <pre>~/public_html/blog/</pre> folder and run <pre>bb post</pre>
</html>

8
cgi-bin/ip.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
echo "Content-type: text/plain"
echo ""
echo $REMOTE_ADDR
exit 0

30
index.php Executable file
View File

@ -0,0 +1,30 @@
<?php $user = posix_getpwuid(fileowner(__FILE__))["name"]; ?>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="tilde.team unix group">
<meta name="author" content="<?=$user?>">
<meta name="theme-color" content="#00cc00">
<title><?=$user?>~tilde.team</title>
<link rel="stylesheet" type="text/css" href="https://tilde.team/css/hacker.css">
</head>
<body>
<div class="container">
<div class="page-header">
<div class="pull-right">
<p><a href="https://tilde.team/">&lt;- back to tilde.team</a></p>
</div>
<h1><strong>~<?=$user?></strong></h1>
</div>
<p>Ok... so looks like I've got a little place to play with with some html. What will I do with this?</p>
<p>So looks like I've got a few options here. Wonder if I could fork the getting started repo, and maybe updateing it a bit. From a noobs POV and see if that would help people. Also really need to get this vi configed. Oh lord forgot how much this sucks with a stock config.</p>
<p>You may want to read: <a href="https://tilde.team/wiki/?page=getting-started">How to ~tilde: Getting Started</a> for help.</p>
<p>Check out your new <a href="blog">blog</a>!</p>
</div>
</body>
</html>