1
0
www.mikescher.com/www/pages/about.php

99 lines
3.7 KiB
PHP
Raw Normal View History

2018-01-21 19:07:43 +01:00
<?php
2020-01-16 11:48:27 +01:00
require_once (__DIR__ . '/../internals/website.php');
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
/** @var PageFrameOptions $FRAME_OPTIONS */ global $FRAME_OPTIONS;
/** @var URLRoute $ROUTE */ global $ROUTE;
/** @var Website $SITE */ global $SITE;
?>
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
<?php
$FRAME_OPTIONS->title = 'About';
$FRAME_OPTIONS->canonical_url = 'https://www.mikescher.com/about';
$FRAME_OPTIONS->activeHeader = 'about';
?>
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<div class="aboutcontent">
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<div class="contentheader"><h1>About mikescher.com</h1><hr/></div>
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
<!-- - - - - - - - - - - - - - - - - - - - - -->
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<div class="boxedcontent">
<div class="bc_header">About me</div>
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<div class="bc_data">
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<p>Welcome to my Mikescher.com</p>
<p>This is my personal homepage, I use it to upload programs I have written, web serials I have style-setted and sometimes for a little bit of blogging.</p>
<p>Its mostly just a collection of stuff I wanted to put only, but I guess thats the core of most personal homepages</p>
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
</div>
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
</div>
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<!-- - - - - - - - - - - - - - - - - - - - - -->
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<div class="boxedcontent">
<div class="bc_header">My git timeline</div>
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<div class="bc_data about_egg_container">
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
<?php
$FRAME_OPTIONS->addScript('/data/javascript/extendedgitgraph.js', true);
echo $SITE->modules->ExtendedGitGraph()->get();
?>
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
</div>
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
</div>
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
<!-- - - - - - - - - - - - - - - - - - - - - -->
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
<div class="boxedcontent">
<div class="bc_header">Other addresses</div>
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
<div class="bc_data about_circles">
2018-01-26 21:00:50 +01:00
2020-01-16 11:48:27 +01:00
<a class="iconbutton_light" href="https://github.com/Mikescher">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24">
<use xlink:href="/data/images/icons.svg#github"></use>
</svg>
<span>Github</span>
</a>
<a class="iconbutton_light" href="https://www.goodreads.com/C4terpillar">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24">
<use xlink:href="/data/images/icons.svg#goodreads"></use>
</svg>
<span>Goodreads</span>
</a>
<a class="iconbutton_light" href="https://stackoverflow.com/users/1761622/mikescher">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24">
<use xlink:href="/data/images/icons.svg#stackoverflow"></use>
</svg>
<span>Stackoverflow</span>
</a>
<a class="iconbutton_light" href="https://www.reddit.com/user/M1kescher/">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24">
<use xlink:href="/data/images/icons.svg#reddit"></use>
</svg>
<span>Reddit</span>
</a>
<a class="iconbutton_light" href="http://www.delphipraxis.net/members/46235-mikescher.html">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24">
<use xlink:href="/data/images/icons.svg#delphipraxis"></use>
</svg>
<span>Delphi-Praxis</span>
</a>
<a class="iconbutton_light" href="mailto:website_mailto@mikescher.com">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24">
<use xlink:href="/data/images/icons.svg#email"></use>
</svg>
<span>E-Mail</span>
</a>
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
</div>
2018-01-21 15:29:01 +01:00
2020-01-16 11:48:27 +01:00
</div>
2018-01-21 15:29:01 +01:00
</div>