<!DOCTYPE html>
<html>
   <head>
       <title>~JonPizza's blog ~tilde.team</title>
       <style>
           html, body {
               margin: 0;
               background-color: #fcba03;
               font-family: monospace;
           }

           #header, #sub, #tilde {
               text-align: center;
           }

           #content {
               width: 500px;
               min-width: 50%;
               max-width: 95%;
               margin: 0 auto;
               font-size: 1.2rem;
           }
       </style>
   </head>
   <body>
       <br>
       <h3 id="tilde"><a href="https://tilde.team/">tilde.team</a></h3>
       <h1 id="header"><strong>~JonPizza!</strong></h1>
       <div id="content">
               <?php
                   if (is_numeric($_GET['post']) && file_exists($_GET['post'] . '.html')) {
                       echo file_get_contents($_GET['post'] . '.html');
                   } else {
                       echo "<h3 style='text-align:CENTER'>Post does not exist!! ):</h3>";
                   }
               ?>
       </div>
   </body>
</html>