mirror of
https://github.com/dilllxd/gitfolio.git
synced 2024-08-14 22:28:09 +00:00
74 lines
2 KiB
HTML
74 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<title></title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.materialdesignicons.com/4.5.95/css/materialdesignicons.min.css"
|
|
/>
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.4.1.min.js"
|
|
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script src="https://unpkg.com/magic-grid/dist/magic-grid.min.js"></script>
|
|
<link rel="stylesheet" href="index.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="profile">
|
|
<div id="profile_img">
|
|
<span id="status">K_</span>
|
|
</div>
|
|
<div id="username">
|
|
<div id="fullname"></div>
|
|
</div>
|
|
<div id="userbio"></div>
|
|
<div id="about"></div>
|
|
</div>
|
|
<div id="display">
|
|
<div id="work">
|
|
<h1>Work.</h1>
|
|
<div class="projects" id="work_section"></div>
|
|
</div>
|
|
<div id="forks" style="display:none;">
|
|
<h1>Forks.</h1>
|
|
<div class="projects" id="forks_section"></div>
|
|
</div>
|
|
<div id="footer">
|
|
<a href="https://github.com/imfunniee" target="_blank">
|
|
made on earth by a human
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
const magicProjectsGrid = new MagicGrid({
|
|
container: "#work_section",
|
|
animate: false,
|
|
gutter: 30, // default gutter size
|
|
static: true,
|
|
useMin: false,
|
|
maxColumns: 2,
|
|
useTransform: true
|
|
});
|
|
|
|
const magicForksGrid = new MagicGrid({
|
|
container: "#forks_section",
|
|
animate: false,
|
|
gutter: 30, // default gutter size
|
|
static: true,
|
|
useMin: false,
|
|
maxColumns: 2,
|
|
useTransform: true
|
|
});
|
|
|
|
$("document").ready(() => {
|
|
magicProjectsGrid.listen();
|
|
magicForksGrid.listen();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|