website/index_v1.php

165 lines
3.9 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php /* echo `whoami`; */ ?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.svg" />
<title>Grizzlys Space</title>
</head>
<body>
<div class="app">
<header>
<span> ~team </span>
<span class="quote">Security does not exist, no system is save</span>
<span><a href="https://tilde.team/">&lt;- back to tilde.team</a></span>
</header>
<main>
<div class="container">
<h2>Hi, I'm Grizzly!</h2>
Have a great day! :)
<div class="content">
<pre>
_________________
< Hello, everyone >
-----------------
\
\
___
{~._.~}
( Y )
()~*~()
(_)-(_)
</pre
>
<div class="botany">
<h3>botany: my plant</h3>
<?php require_once("botany.php"); ?>
</div>
</div>
<div class="more">
<p class="mail">mail/xmpp: grizzly /at/ this domain</p>
<p>
<a href="https://grizzly.tilde.team/">grizzly.tilde.team</a> |
<a href="https://tilde.team/~grizzly">tilde.team/~grizzly</a>
</p>
<p>
<a href="gemini://grizzly.flounder.online/"
>gemini://grizzly.flounder.online/</a
>
</p>
</div>
</div>
</main>
<footer>
<!-- tilde.team ring fragment-->
<div class="newring">
[<a href="https://tilde.team/ring/?action=prev&me=grizzly">previous</a
>] [<a href="https://tilde.team/ring/?action=random&me=grizzly"
>random</a
>] [<a href="https://tilde.team/ring/?action=next&me=grizzly">next</a
>]
<br />
<a href="https://tilde.team/ring/">how to join this webring</a>
</div>
<div>copyleft 2137</div>
</footer>
</div>
<style>
.content {
display: flex;
flex-direction: row;
align-items: center;
}
@media (max-width: 40rem) {
.content {
flex-direction: column;
}
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: "lucida sans unicode", "lucida grande", sans-serif;
line-height: 1.7;
font-size: 14px;
}
.app {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #f5f5f5;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f5f5f5;
margin: 10px;
}
.more {
margin-top: 20px;
}
.mail {
margin-bottom: 10px;
}
.quote {
font-weight: 300;
text-align: center;
}
.botany {
transform: scale(0.8);
transition: all 0.2s ease-in-out;
}
.botany:hover {
transform: scale(1);
}
header {
margin-bottom: 10px;
padding: 10px;
border-bottom: 3px solid #2a0061;
background-color: #5300be;
font-weight: 800;
color: #eee;
display: flex;
align-items: center;
}
header span {
width: 33%;
}
header span a {
color: #eee;
float: right;
}
main {
flex-grow: 1;
}
footer {
display: flex;
flex-direction: column;
align-items: center;
font-size: 12px;
background-color: #eeeeee;
}
footer div {
margin: 10px;
}
.newring a {
color: #777;
}
.newring a:hover {
color: #525252;
}
.newring {
text-align: center;
}
</style>
</body>
</html>