skel/public_html/your_index_template.php

60 lines
1.3 KiB
PHP
Raw Normal View History

2019-08-03 12:14:39 +00:00
<!--
2019-08-03 12:22:29 +00:00
hey,
2019-09-13 19:18:20 +00:00
this is a template for your own index.php.
you can edit this file and rename it to index.php.
2019-08-03 12:14:39 +00:00
have fun!
2019-09-13 19:18:20 +00:00
cp ~/public_html/your_index_template.php ~/public_html/index.php
2019-08-03 12:14:39 +00:00
YOU CAN REMOVE THIS COMMENT!
-->
2019-09-25 21:47:25 +00:00
2019-08-04 09:58:03 +00:00
<?php $user = posix_getpwuid(fileowner(__FILE__))["name"]; ?>
2019-09-25 21:47:25 +00:00
<!-- HTML HEADER -->
2019-08-01 20:16:38 +00:00
<!DOCTYPE html>
<html lang="en">
2019-08-04 09:58:03 +00:00
<head>
2019-09-13 19:18:20 +00:00
<title>~<?=$user?> on envs.net</title>
2019-08-04 09:58:03 +00:00
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="<?=$user?>">
<meta name="robots" content="noindex">
2019-09-25 21:47:25 +00:00
<meta name="description" content="~<?=$user?> on envs.net" />
2019-08-04 09:58:03 +00:00
<meta name="keywords" content="<?=$user?>" />
<link rel="stylesheet" href="https://envs.net/css/css_style.css" />
<link rel="stylesheet" href="https://envs.net/css/fork-awesome.min.css" />
2019-08-04 09:58:03 +00:00
</head>
2019-09-25 21:47:25 +00:00
<!-- HTML BODY -->
2019-08-04 09:58:03 +00:00
<body id="body">
2019-09-25 21:47:25 +00:00
<!-- min-width: needed if the sidebar is enable -->
<div style="clear:both; /*min-width: 750px;*/">
2019-08-04 09:58:03 +00:00
<div id="main">
2019-08-01 20:16:38 +00:00
<pre>
<blockquote>
2019-08-04 09:58:03 +00:00
<?=$user?>
2019-08-01 20:16:38 +00:00
2019-08-04 09:58:03 +00:00
</blockquote>
2019-09-25 21:47:25 +00:00
hi and welcome to my new website.
IRC: <?=$user?> on tilde.chat
2019-08-04 09:58:03 +00:00
Mail: <code><?=$user?>&#64;envs.net</code>
2019-08-01 20:16:38 +00:00
</pre>
2019-08-04 09:58:03 +00:00
</div>
2019-08-01 20:16:38 +00:00
2019-09-25 21:47:25 +00:00
<!-- You can also enable a right sidebar
<div id="sidebar">
<pre class="sidebar">
more text
</pre>
</div>
-->
2019-08-04 09:58:03 +00:00
</div>
2019-08-01 20:16:38 +00:00
2019-08-04 09:58:03 +00:00
</body>
2019-08-01 20:16:38 +00:00
</html>