redesign website with adjusted and formatting #24
+1
-7
@@ -56,7 +56,7 @@ nav ul {
|
|||||||
|
|
||||||
.trianta {
|
.trianta {
|
||||||
font-size: 2.5rem !important;
|
font-size: 2.5rem !important;
|
||||||
min-width: 12rem;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.canvas {
|
.canvas {
|
||||||
@@ -98,14 +98,8 @@ p {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
border: solid 2px #8c7862;
|
|
||||||
border-radius: 12px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 6px;
|
|
||||||
margin-top: 0px;
|
|
||||||
max-width: 8rem;
|
max-width: 8rem;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
text-align: center;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-5
@@ -8,7 +8,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="inside">
|
<div class="inside">
|
||||||
<div style="display: flex;">
|
<div>
|
||||||
<a href="/" class="trianta">TRIANTA</a>
|
<a href="/" class="trianta">TRIANTA</a>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<a href="https://www.github.com/trimutex" alt="GitHub"><i class="nf nf-dev-github"></i></a>
|
<a href="https://www.github.com/trimutex" alt="GitHub"><i class="nf nf-dev-github"></i></a>
|
||||||
@@ -20,10 +20,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p>Function over form by design</p>
|
<p>Function over form by design</p>
|
||||||
<div style="display: flex;">
|
|
||||||
<div class="column gap"></div>
|
|
||||||
<div class="column content"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+43
-49
@@ -4,64 +4,58 @@
|
|||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<title>Trianta</title>
|
<title>Trianta</title>
|
||||||
<link rel="stylesheet" href="/default.css" />
|
<link rel="stylesheet" href="/default.css" />
|
||||||
|
<link rel="stylesheet" href="https://www.nerdfonts.com/assets/css/webfont.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="inside">
|
<div class="inside">
|
||||||
<div>
|
<div>
|
||||||
<a href="/" class="trianta">TRIANTA</a>
|
<a href="/" class="trianta">TRIANTA</a>
|
||||||
<p>Function over form by design</p>
|
<div class="column">
|
||||||
|
<a href="https://www.github.com/trimutex" alt="GitHub"><i class="nf nf-dev-github"></i></a>
|
||||||
|
<a href="https://lab.trianta.dev/Trianta" alt="Personal Projects"><i class="nf nf-linux-gitea"></i></a>
|
||||||
|
<a href="/completed" alt="Completed"><i class="nf nf-dev-javascript"></i></a>
|
||||||
|
<a href="/current" alt="Current"><i class="nf nf-dev-git_branch"></i></a>
|
||||||
|
<a href="/other" alt="Other"><i class="nf nf-dev-git_merge"></i></a>
|
||||||
|
<a href="/contact" alt="Contact"><i class="nf nf-oct-feed_person"></i></a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="display: flex;">
|
<p>Function over form by design</p>
|
||||||
<nav class="column">
|
<h2>Completed Projects</h2>
|
||||||
<ul>
|
<div class="card reserve">
|
||||||
<li><a href="https://www.github.com/trimutex">GitHub</a></li>
|
<div class="canvas">
|
||||||
<li><a href="https://lab.trianta.dev/Trianta">Projects</a></li>
|
<canvas width="750" height="585" id="pong"></canvas>
|
||||||
<li><a href="/completed">Completed</a></li>
|
<script src="/public/pong.js"></script>
|
||||||
<li><a href="/current">Current</a></li>
|
<div id="gameover" hidden="true">
|
||||||
<li><a href="/other">Other</a></li>
|
<h3>Game Over</h3>
|
||||||
<li><a href="/contact">Contact</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
<div class="column gap"></div>
|
|
||||||
<div class="column content">
|
|
||||||
<h2>Completed Projects</h2>
|
|
||||||
<div class="card reserve">
|
|
||||||
<div class="canvas">
|
|
||||||
<canvas width="750" height="585" id="pong"></canvas>
|
|
||||||
<script src="/public/pong.js"></script>
|
|
||||||
<div id="gameover" hidden="true">
|
|
||||||
<h3>Game Over</h3>
|
|
||||||
</div>
|
|
||||||
<div id="restart" hidden="true">
|
|
||||||
<button class="button" type="button" onclick = "restartGame()">Restart Game</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="stats">
|
|
||||||
<p style="font-size: 22px;">Pong</p>
|
|
||||||
<p>Left Paddle Height: <span id="leftPaddle"></span></p>
|
|
||||||
<p>Right Paddle Height: <span id="rightPaddle"></span></p>
|
|
||||||
<a href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/pong.js">View Code</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="card reserve">
|
<div id="restart" hidden="true">
|
||||||
<div class="canvas">
|
<button class="button" type="button" onclick = "restartGame()">Restart Game</a>
|
||||||
<canvas width="625" height="375" id="snake"></canvas>
|
|
||||||
<script src="/public/snake.js"></script>
|
|
||||||
</div>
|
|
||||||
<div class="stats">
|
|
||||||
<p style="font-size: 22px;">Snake</p>
|
|
||||||
<p>
|
|
||||||
Adjust game size -- Width:
|
|
||||||
<input id="snakeWidth" type="number" min="2" max="31" value="31">
|
|
||||||
Height:
|
|
||||||
<input id="snakeHeight" type="number" min="2" max="24" value="24">
|
|
||||||
</p>
|
|
||||||
<p>Snake Head Location: <span id="snakeHead"></span></p>
|
|
||||||
<p>Food Location: <span id="snakeFood"></span></p>
|
|
||||||
<a href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/snake.ts">View Code</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="stats">
|
||||||
|
<p style="font-size: 22px;">Pong</p>
|
||||||
|
<p>Left Paddle Height: <span id="leftPaddle"></span></p>
|
||||||
|
<p>Right Paddle Height: <span id="rightPaddle"></span></p>
|
||||||
|
<a href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/pong.js">View Code</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card reserve">
|
||||||
|
<div class="canvas">
|
||||||
|
<canvas width="625" height="375" id="snake"></canvas>
|
||||||
|
<script src="/public/snake.js"></script>
|
||||||
|
</div>
|
||||||
|
<div class="stats">
|
||||||
|
<p style="font-size: 22px;">Snake</p>
|
||||||
|
<p>
|
||||||
|
Adjust game size -- Width:
|
||||||
|
<input id="snakeWidth" type="number" min="2" max="31" value="31">
|
||||||
|
Height:
|
||||||
|
<input id="snakeHeight" type="number" min="2" max="24" value="24">
|
||||||
|
</p>
|
||||||
|
<p>Snake Head Location: <span id="snakeHead"></span></p>
|
||||||
|
<p>Food Location: <span id="snakeFood"></span></p>
|
||||||
|
<a href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/snake.ts">View Code</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
+13
-19
@@ -4,32 +4,26 @@
|
|||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<title>Trianta</title>
|
<title>Trianta</title>
|
||||||
<link rel="stylesheet" href="/default.css" />
|
<link rel="stylesheet" href="/default.css" />
|
||||||
|
<link rel="stylesheet" href="https://www.nerdfonts.com/assets/css/webfont.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="inside">
|
<div class="inside">
|
||||||
<div>
|
<div>
|
||||||
<a href="/" class="trianta">TRIANTA</a>
|
<a href="/" class="trianta">TRIANTA</a>
|
||||||
<p>Function over form by design</p>
|
<div class="column">
|
||||||
</div>
|
<a href="https://www.github.com/trimutex" alt="GitHub"><i class="nf nf-dev-github"></i></a>
|
||||||
<div style="display: flex;">
|
<a href="https://lab.trianta.dev/Trianta" alt="Personal Projects"><i class="nf nf-linux-gitea"></i></a>
|
||||||
<nav class="column">
|
<a href="/completed" alt="Completed"><i class="nf nf-dev-javascript"></i></a>
|
||||||
<ul>
|
<a href="/current" alt="Current"><i class="nf nf-dev-git_branch"></i></a>
|
||||||
<li><a href="https://www.github.com/trimutex">GitHub</a></li>
|
<a href="/other" alt="Other"><i class="nf nf-dev-git_merge"></i></a>
|
||||||
<li><a href="https://lab.trianta.dev/Trianta">Projects</a></li>
|
<a href="/contact" alt="Contact"><i class="nf nf-oct-feed_person"></i></a>
|
||||||
<li><a href="/completed">Completed</a></li>
|
|
||||||
<li><a href="/current">Current</a></li>
|
|
||||||
<li><a href="/other">Other</a></li>
|
|
||||||
<li><a href="/contact">Contact</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
<div class="column gap"></div>
|
|
||||||
<div class="column content">
|
|
||||||
<h2>Contact Methods</h2>
|
|
||||||
<p>E-mail: gregcraw2001@gmail.com</p>
|
|
||||||
<p>Discord: trianta</p>
|
|
||||||
<p>Matrix: @trimutex:matrix.org</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<p>Function over form by design</p>
|
||||||
|
<h2>Contact Methods</h2>
|
||||||
|
<p>E-mail: gregcraw2001@gmail.com</p>
|
||||||
|
<p>Discord: trianta</p>
|
||||||
|
<p>Matrix: @trimutex:matrix.org</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+23
-29
@@ -4,42 +4,36 @@
|
|||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<title>Trianta</title>
|
<title>Trianta</title>
|
||||||
<link rel="stylesheet" href="/default.css" />
|
<link rel="stylesheet" href="/default.css" />
|
||||||
|
<link rel="stylesheet" href="https://www.nerdfonts.com/assets/css/webfont.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="inside">
|
<div class="inside">
|
||||||
<div>
|
<div>
|
||||||
<a href="/" class="trianta">TRIANTA</a>
|
<a href="/" class="trianta">TRIANTA</a>
|
||||||
<p>Function over form by design</p>
|
<div class="column">
|
||||||
</div>
|
<a href="https://www.github.com/trimutex" alt="GitHub"><i class="nf nf-dev-github"></i></a>
|
||||||
<div style="display: flex;">
|
<a href="https://lab.trianta.dev/Trianta" alt="Personal Projects"><i class="nf nf-linux-gitea"></i></a>
|
||||||
<nav class="column">
|
<a href="/completed" alt="Completed"><i class="nf nf-dev-javascript"></i></a>
|
||||||
<ul>
|
<a href="/current" alt="Current"><i class="nf nf-dev-git_branch"></i></a>
|
||||||
<li><a href="https://www.github.com/trimutex">GitHub</a></li>
|
<a href="/other" alt="Other"><i class="nf nf-dev-git_merge"></i></a>
|
||||||
<li><a href="https://lab.trianta.dev/Trianta">Projects</a></li>
|
<a href="/contact" alt="Contact"><i class="nf nf-oct-feed_person"></i></a>
|
||||||
<li><a href="/completed">Completed</a></li>
|
|
||||||
<li><a href="/current">Current</a></li>
|
|
||||||
<li><a href="/other">Other</a></li>
|
|
||||||
<li><a href="/contact">Contact</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
<div class="column gap"></div>
|
|
||||||
<div class="column content">
|
|
||||||
<h2>Current Personal Projects</h2>
|
|
||||||
<div class="card">
|
|
||||||
<h3>Wrench</h3>
|
|
||||||
<p>Description: A simple application to handle all of your Linux configuration needs.</p>
|
|
||||||
<p>Language: C++26</p>
|
|
||||||
<p>Tools: CMake</p>
|
|
||||||
<p>Frameworks: Qt6</p>
|
|
||||||
<a href="https://github.com/Trimutex/wrench">View Repository</a>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<h3>Synopsis</h3>
|
|
||||||
<p>Description: A markdown repository containing details and changes of servers I maintain.</p>
|
|
||||||
<a href="https://github.com/Trimutex/synopsis">View Repository</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<p>Function over form by design</p>
|
||||||
|
<h2>Current Personal Projects</h2>
|
||||||
|
<div class="card">
|
||||||
|
<h3>Wrench</h3>
|
||||||
|
<p>Description: A simple application to handle all of your Linux configuration needs.</p>
|
||||||
|
<p>Language: C++26</p>
|
||||||
|
<p>Tools: CMake</p>
|
||||||
|
<p>Frameworks: Qt6</p>
|
||||||
|
<a href="https://github.com/Trimutex/wrench">View Repository</a>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h3>Synopsis</h3>
|
||||||
|
<p>Description: A markdown repository containing details and changes of servers I maintain.</p>
|
||||||
|
<a href="https://github.com/Trimutex/synopsis">View Repository</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+53
-59
@@ -4,72 +4,66 @@
|
|||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<title>Trianta</title>
|
<title>Trianta</title>
|
||||||
<link rel="stylesheet" href="/default.css" />
|
<link rel="stylesheet" href="/default.css" />
|
||||||
|
<link rel="stylesheet" href="https://www.nerdfonts.com/assets/css/webfont.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="inside">
|
<div class="inside">
|
||||||
<div>
|
<div>
|
||||||
<a href="/" class="trianta">TRIANTA</a>
|
<a href="/" class="trianta">TRIANTA</a>
|
||||||
<p>Function over form by design</p>
|
<div class="column">
|
||||||
</div>
|
<a href="https://www.github.com/trimutex" alt="GitHub"><i class="nf nf-dev-github"></i></a>
|
||||||
<div style="display: flex;">
|
<a href="https://lab.trianta.dev/Trianta" alt="Personal Projects"><i class="nf nf-linux-gitea"></i></a>
|
||||||
<nav class="column">
|
<a href="/completed" alt="Completed"><i class="nf nf-dev-javascript"></i></a>
|
||||||
<ul>
|
<a href="/current" alt="Current"><i class="nf nf-dev-git_branch"></i></a>
|
||||||
<li><a href="https://www.github.com/trimutex">GitHub</a></li>
|
<a href="/other" alt="Other"><i class="nf nf-dev-git_merge"></i></a>
|
||||||
<li><a href="https://lab.trianta.dev/Trianta">Projects</a></li>
|
<a href="/contact" alt="Contact"><i class="nf nf-oct-feed_person"></i></a>
|
||||||
<li><a href="/completed">Completed</a></li>
|
|
||||||
<li><a href="/current">Current</a></li>
|
|
||||||
<li><a href="/other">Other</a></li>
|
|
||||||
<li><a href="/contact">Contact</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
<div class="column gap"></div>
|
|
||||||
<div class="column content">
|
|
||||||
<h2>Other Projects</h2>
|
|
||||||
<div class="card">
|
|
||||||
<h3>Hyprland</h3>
|
|
||||||
<p>Description: An independent, highly customizable, dynamic tiling Wayland compositor that doesn't sacrifice on its looks. </p>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland">View Repository</a>
|
|
||||||
<p>Language: C++26</p>
|
|
||||||
<p>Tools: CMake</p>
|
|
||||||
<p>and various libraries.</p>
|
|
||||||
<p>Contributions (newest first)</p>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/8323">hyprwm/Hyprland#8323</a>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/8044">hyprwm/Hyprland#8044</a>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/7959">hyprwm/Hyprland#7959</a>
|
|
||||||
<br>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/7755">hyprwm/Hyprland#7755</a>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/7683">hyprwm/Hyprland#7683</a>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/7633">hyprwm/Hyprland#7633</a>
|
|
||||||
<br>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/7575">hyprwm/Hyprland#7575</a>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/7458">hyprwm/Hyprland#7458</a>
|
|
||||||
<a href="https://github.com/hyprwm/Hyprland/pull/6652">hyprwm/Hyprland#6652</a>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<h3>Proxy</h3>
|
|
||||||
<p>Description: A program written in C++ to act as a proxy for another server.</p>
|
|
||||||
<a href="https://lab.trianta.dev/Trianta/proxy-network">View Repository</a>
|
|
||||||
<p>Language: C++11</p>
|
|
||||||
<p>Tools: CMake</p>
|
|
||||||
<p>Testing Frameworks: <a href="https://github.com/ThrowTheSwitch/Unity">Unity Test (ThrowTheSwitch)</a></p>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<h3>Cloudcare</h3>
|
|
||||||
<p>Description: A sample repository that uses downloaded .bed files to train a model on DNA using PyTorch.</p>
|
|
||||||
<a href="https://github.com/Trimutex/cloudcare">View Repository</a>
|
|
||||||
<p>Languages: Python, Bash</p>
|
|
||||||
<p>Libraries: PyTorch</p>
|
|
||||||
<p>Tools: Conda</p>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<h3>N-Queens</h3>
|
|
||||||
<p>Description: The N-Queens problem recreated in C++ which gets solved using a Genetic Algorithm.</p>
|
|
||||||
<a href="https://lab.trianta.dev/Trianta/n-queens">View Repository</a>
|
|
||||||
<p>Language: C++11</p>
|
|
||||||
<p>Tools: CMake</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<p>Function over form by design</p>
|
||||||
|
<h2>Other Projects</h2>
|
||||||
|
<div class="card">
|
||||||
|
<h3>Hyprland</h3>
|
||||||
|
<p>Description: An independent, highly customizable, dynamic tiling Wayland compositor that doesn't sacrifice on its looks. </p>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland">View Repository</a>
|
||||||
|
<p>Language: C++26</p>
|
||||||
|
<p>Tools: CMake</p>
|
||||||
|
<p>and various libraries.</p>
|
||||||
|
<p>Contributions (newest first)</p>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/8323">hyprwm/Hyprland#8323</a>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/8044">hyprwm/Hyprland#8044</a>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/7959">hyprwm/Hyprland#7959</a>
|
||||||
|
<br>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/7755">hyprwm/Hyprland#7755</a>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/7683">hyprwm/Hyprland#7683</a>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/7633">hyprwm/Hyprland#7633</a>
|
||||||
|
<br>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/7575">hyprwm/Hyprland#7575</a>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/7458">hyprwm/Hyprland#7458</a>
|
||||||
|
<a href="https://github.com/hyprwm/Hyprland/pull/6652">hyprwm/Hyprland#6652</a>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h3>Proxy</h3>
|
||||||
|
<p>Description: A program written in C++ to act as a proxy for another server.</p>
|
||||||
|
<a href="https://lab.trianta.dev/Trianta/proxy-network">View Repository</a>
|
||||||
|
<p>Language: C++11</p>
|
||||||
|
<p>Tools: CMake</p>
|
||||||
|
<p>Testing Frameworks: <a href="https://github.com/ThrowTheSwitch/Unity">Unity Test (ThrowTheSwitch)</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h3>Cloudcare</h3>
|
||||||
|
<p>Description: A sample repository that uses downloaded .bed files to train a model on DNA using PyTorch.</p>
|
||||||
|
<a href="https://github.com/Trimutex/cloudcare">View Repository</a>
|
||||||
|
<p>Languages: Python, Bash</p>
|
||||||
|
<p>Libraries: PyTorch</p>
|
||||||
|
<p>Tools: Conda</p>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h3>N-Queens</h3>
|
||||||
|
<p>Description: The N-Queens problem recreated in C++ which gets solved using a Genetic Algorithm.</p>
|
||||||
|
<a href="https://lab.trianta.dev/Trianta/n-queens">View Repository</a>
|
||||||
|
<p>Language: C++11</p>
|
||||||
|
<p>Tools: CMake</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user