thisisjoes.site/about.php

44 lines
3.0 KiB
PHP

<!DOCTYPE html>
<html lang=en-US>
<?php $pageName = $_SERVER['SCRIPT_NAME'];
require($_SERVER['DOCUMENT_ROOT'] .'/sedulcni/title.php');
require($_SERVER['DOCUMENT_ROOT'] .'/sedulcni/head.php'); ?>
<body<?php require($_SERVER['DOCUMENT_ROOT'] .'/sedulcni/fromPhotos.php'); ?>>
<div class="wrapper">
<div class="header-container">
<?php require($_SERVER['DOCUMENT_ROOT'] .'/sedulcni/header.php'); ?>
<?php require($_SERVER['DOCUMENT_ROOT'] .'/sedulcni/nav.php'); ?>
</div>
<div class="content" id="content" role="main">
<div class="row">
<div class="column left">
<h1>About Me</h1>
<picture>
<source srcset="/img/core/me-opt.webp" type="image/webp">
<source srcset="/img/core/me-opt.png" type="image/png">
<img id="me" src="/img/core/me-opt.png" alt="A pixellated, 8-color image of my face." title="Me. Why the low res and weird colors? Well 1. It looks cool. 2. I'm a bit uncomfortable putting my face on the internet." height="128" width="128">
</picture>
<p>My name is Joe.</p>
<p>I am a hobbyist server operator, code tinkerer, and photographer.</p>
<p>These days I spend most of my time maintaining and fiddling with the the numerous free software public services I host.
The more decentralized the web becomes, the better!</p>
<p>As I'm sure you can tell from my git history, I tend to procrastinate and work in passionate sprints.</p>
<p>I have a non-24-hour circadian rythm, which might partially explain the previous fact.</p>
<p>If you need to contact me, or just want to chat, check my <a href="/contact.php">Contact page</a>.</p>
</div>
<div class="column right">
<h1>About This Site</h1>
<p>I originally created this site in order to teach myself web development and share some of my creations.
It's my primary presence on the web, and has links to most of the other things I'm involved with.
I still update it from time to time.</p>
<p>All the code for this site and the content on it is my own except where otherwise credited.</p>
<p>All content on this site is licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0 license</a> unless otherwise noted.
You can see a summary of the license terms by visiting the preceeding link, or view the <a href="https://creativecommons.org/licenses/by-sa/4.0/legalcode">full text.</a></p>
<p>The photo viewer was made by <a href="https://github.com/fengyuanchen">Chen Fengyuan</a> and is licensed under the <a href="https://github.com/fengyuanchen/viewerjs/blob/master/LICENSE">MIT license</a>.</p>
<p>The back to top icon was made by Eleonor Wang and is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC BY 3.0 license</a>.</p>
</div>
</div>
</div>
<?php require($_SERVER['DOCUMENT_ROOT'] .'/sedulcni/footer.php'); ?>
</div>