Fix formatting

This commit is contained in:
Reimar 2025-03-05 18:19:35 +01:00
parent 6b8fae6062
commit 779dfccf25
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268

106
index.php
View File

@ -4,29 +4,29 @@
?> ?>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<?php require "inc/head.inc" ?> <?php require "inc/head.inc" ?>
</head> </head>
<body> <body>
<?php require "inc/nav.inc" ?> <?php require "inc/nav.inc" ?>
<div id="main-and-sidebar" dir="rtl" class="inline-block"> <div id="main-and-sidebar" dir="rtl" class="inline-block">
<div id="main-wrapper" class="inline-block"> <div id="main-wrapper" class="inline-block">
<div id="main" class="inline-block"> <div id="main" class="inline-block">
<main> <main>
<div class="section container"> <div class="section container">
<h1>Welcome</h1> <h1>Welcome</h1>
<p> <p>
I'm <?= $age == 18 ? "an" : "a" ?> <?= $age ?> year old programmer from Denmark.<br> I'm <?= $age == 18 ? "an" : "a" ?> <?= $age ?> year old programmer from Denmark.<br>
This website is self-hosted on a Raspberry Pi. Server temperature: <b><?= $temp ?></b> This website is self-hosted on a Raspberry Pi. Server temperature: <b><?= $temp ?></b>
</p> </p>
<img class="icon" src="/assets/icons/linkedin.png" alt="LinkedIn" width="16" height="16"> <img class="icon" src="/assets/icons/linkedin.png" alt="LinkedIn" width="16" height="16">
<a href="https://www.linkedin.com/in/reimarpb/" target="_blank" title="LinkedIn"> <a href="https://www.linkedin.com/in/reimarpb/" target="_blank" title="LinkedIn">
LinkedIn LinkedIn
</a> </a>
<br> <br>
@ -39,9 +39,9 @@
<source type="image/svg+xml" srcset="/assets/icons/light-mode/github.svg"> <source type="image/svg+xml" srcset="/assets/icons/light-mode/github.svg">
<img class="light icon" src="/assets/icons/light-mode/github.png" alt="GitHub"> <img class="light icon" src="/assets/icons/light-mode/github.png" alt="GitHub">
</picture> </picture>
<a href="https://github.com/ReimarPB" target="_blank" title="GitHub"> <a href="https://github.com/ReimarPB" target="_blank" title="GitHub">
GitHub GitHub
</a> </a>
<br> <br>
<center> <center>
@ -55,57 +55,57 @@
&bull; &bull;
<a href="https://handskemager.xyz">handskemager.xyz</a> <a href="https://handskemager.xyz">handskemager.xyz</a>
</center> </center>
</div> </div>
<div class="section container"> <div class="section container">
<h1>Projects</h1> <h1>Projects</h1>
<hr> <hr>
<img src="/assets/icons/popup-timer.ico" class="pixelated icon" alt=""> <img src="/assets/icons/popup-timer.ico" class="pixelated icon" alt="">
<b>Popup Timer</b> <b>Popup Timer</b>
<br> <br>
<span>Have a timer or stopwatch in the corner of your screen, directly from within your browser</span> <span>Have a timer or stopwatch in the corner of your screen, directly from within your browser</span>
<br> <br>
<i><a href="https://popup-timer.reim.ar" target="_blank">Open in browser</a></i> <i><a href="https://popup-timer.reim.ar" target="_blank">Open in browser</a></i>
<hr> <hr>
<img src="/assets/icons/gameoflife.ico" class="pixelated icon" alt=""> <img src="/assets/icons/gameoflife.ico" class="pixelated icon" alt="">
<b>Game of life</b> <b>Game of life</b>
<br> <br>
<span>Conway's Game of Life created with the win32 API</span> <span>Conway's Game of Life created with the win32 API</span>
<br> <br>
<i> <i>
<a href="/assets/bin/gameoflife.exe">Download for Windows</a> <a href="/assets/bin/gameoflife.exe">Download for Windows</a>
&bull; &bull;
<a href="https://github.com/ReimarPB/GameOfLife-Win32" target="_blank">View on GitHub</a> <a href="https://github.com/ReimarPB/GameOfLife-Win32" target="_blank">View on GitHub</a>
</i> </i>
<hr> <hr>
<img src="/assets/icons/reimtris.ico" class="icon" alt=""> <img src="/assets/icons/reimtris.ico" class="icon" alt="">
<b>Reimtris</b> <b>Reimtris</b>
<br> <br>
<span>A Tetris clone written in Rust with epic background music</span> <span>A Tetris clone written in Rust with epic background music</span>
<br> <br>
<i> <i>
<a href="/assets/bin/Reimtris.exe">Download for Windows</a> <a href="/assets/bin/Reimtris.exe">Download for Windows</a>
&bull; &bull;
<a href="/assets/bin/Reimtris">Download for Linux</a> <a href="/assets/bin/Reimtris">Download for Linux</a>
</i> </i>
</div> </div>
</main> </main>
</div> </div>
</div><!-- </div><!--
--><?php require "inc/sidebar.inc" ?> --><?php require "inc/sidebar.inc" ?>
</div> </div>
<?php require "inc/background.inc" ?> <?php require "inc/background.inc" ?>
</body> </body>
</html> </html>