mirror of
https://github.com/YouHaveTrouble/youhavetrouble.github.io.git
synced 2026-05-11 22:06:56 +00:00
63 lines
2.2 KiB
HTML
63 lines
2.2 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 plugins</h2>
|
|
<div class="row" data-plugins>
|
|
</div>
|
|
</section>
|
|
<footer>
|
|
<small>© Paweł "YouHaveTrouble" Michalewski</small>
|
|
</footer>
|
|
</body>
|
|
<template id="iconTemplate">
|
|
<a data-link class="hori-card" target="_blank">
|
|
<div class="icon">
|
|
<img data-iconimage loading="lazy">
|
|
</div>
|
|
<div class="desc">
|
|
<b data-name></b>
|
|
<small data-desc></small>
|
|
</div>
|
|
</a>
|
|
</template>
|
|
</html> |