Files
youhavetrouble.github.io/projects/index.html
T

78 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>YouHaveTrouble</title>
<meta name="title" content="YouHaveTrouble"/>
<meta name="description" content="Just a page about random person on the internet"/>
<meta property="twitter:title" content="YouHaveTrouble"/>
<meta property="twitter:image" content="https://youhavetrouble.me/img/avatar.png"/>
<meta property="twitter:description" content="Just a page about random person on the internet"/>
<meta property="og:title" content="YouHaveTrouble"/>
<meta property="og:url" content="https://youhavetrouble.me"/>
<meta property="og:description" content="Just a page about random person on the internet"/>
<meta property="og:image" content="https://youhavetrouble.me/img/avatar.png"/>
<link rel="stylesheet" href="/style/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="projects.js" defer></script>
</head>
<body>
<nav>
<div class="pages">
<a href="/" class="button ">Home</a>
<a class="button active">Projects</a>
</div>
</nav>
<section>
<h2>Tutorials</h2>
<div class="row">
<a href="https://github.com/YouHaveTrouble/minecraft-optimization" class="hori-card" target="_blank">
<div class="icon">
<i class="fa-solid fa-server"></i>
</div>
<div class="desc">
<b>Server Optimization Guide</b>
<small>Minecraft server optimization guide aimed for bukkit-based servers</small>
</div>
</a>
</div>
</section>
<section>
<h2>Minecraft projects</h2>
<div class="row" data-plugins>
<noscript>Sorry, but this data is loaded by javascript, which seems to not be enabled!</noscript>
</div>
</section>
<section>
<h2>Terraria projects</h2>
<div class="row">
<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=2897350075" class="hori-card" target="_blank">
<div class="icon">
<img draggable="false" src="https://steamuserimages-a.akamaihd.net/ugc/2006946285968997403/1444B38AE5A967655FD8C780CCD3A46DB08BCC86/?" alt=""/>
</div>
<div class="desc">
<b>YHT Mod</b>
<small>TModLoader mod with a bit of content and quality of life changes</small>
</div>
</a>
</div>
</section>
<footer>
<small>&copy; Paweł "YouHaveTrouble" Michalewski</small>
</footer>
</body>
<template id="iconTemplate">
<a data-link class="hori-card" target="_blank">
<div class="icon">
<img draggable="false" data-iconimage loading="lazy" alt="">
</div>
<div class="desc">
<b data-name></b>
<small data-desc></small>
</div>
</a>
</template>
</html>