My personal website. http://www.ultrasonicmadness.org/

[[ 🗃 ^bvV3E usm-website ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/bvV3E

SSH: git clone USERNAME@vervis.peers.community:bvV3E

Branches

Tags

master :: public_html /

index.php

<?php
    /*
     * Personal website of UltrasonicMadness
     * Copyright (C) 2018 UltrasonicMadness
     *
     * This program is free software: you can redistribute it and/or modify
     * it under the terms of the GNU Affero General Public License as
     * published by the Free Software Foundation, either version 3 of the
     * License, or (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU Affero General Public License for more details.
     *
     * You should have received a copy of the GNU Affero General Public License
     * along with this program.  If not, see <http://www.gnu.org/licenses/>. 
     */
    
    include($_SERVER['DOCUMENT_ROOT'] . '/../backend/php/page-elements.php');
?>

<!DOCTYPE html>
<html>
    <head>
        <?php
            gen_html_head('Home', 'red');
        ?>
        <link type="text/css" rel="stylesheet" href="/common/style/gsembed.css" />
        <script type="application/javascript" src="/common/js/jquery-3.3.1.min.js"></script>
        <script type="application/javascript" src="/common/js/gsembed.js"></script>
    </head>
    
    <body>
        <?php
            gen_common_pane();
        ?>
        
        <div id="page-pane">
            <main>
                <h1>UltrasonicMadness</h1>
                <div id="usm-latest">
                    <p>GSEmbed was not loaded successfully, please visit <a target="_blank" href="https://gnusocial.no/ultrasonicmadness">my GNU Social page</a> for my latest updates.</p>
                </div>
                <p>Hello and welcome to my website. This is currently a showcase for programs I have written such as <a href="/software/ultrasonichelix">my SoundHelix frontend</a> and it also offers a Steam-less <a href="/agegate?nexturl=/mirrors/everlasting-summer">mirror</a> for the visual novel <a target="_blank" href="http://everlastingsummer.su/en/">Everlasting Summer</a>. This site and all software it contains is <a target="_blank" href="https://www.gnu.org/philosophy/free-sw.html">freely available</a>, with the possible exception of anything in <a href="/mirrors">the Mirrors section</a>.</p>
                <p>I can be contacted on contact|at|ultrasonicmadness|dot|org (having the address properly formatted on this was giving me spam) and I'm available on the code-hosting site <a target="_blank" href="https://notabug.org/UltrasonicMadness">NotABug</a>. Updates related to the website and any of my other projects may be available on <a target="_blank" href="https://gnusocial.no/ultrasonicmadness">my GNU Social profile</a>.</p>
                <p>Enjoy your stay here.</p>
                <p>UltrasonicMadness</p>
            </main>
            
            <?php inc_footer(); ?>
            
            <script type="application/javascript">
                $(function()
                {
                    addGSEmbedWidget("https://gnusocial.no/api/statuses/user_timeline/34098.as", "#usm-latest");
                });
            </script>
        </div>
    </body>
</html>

[See repo JSON]