aboutsummaryrefslogtreecommitdiff
path: root/src/index.html
blob: 0c607b3934f757e02ff24192a005d8814e4cf809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<link rel="stylesheet" href="scss/style.scss">
		<script type="text/javascript" src="js/app.js"></script>
	</head>
	<body>
		<div class="container-fluid px-0">
			<div class="row mx-0">
				<div class="col ms-4 mt-2" id="header">
					<a id="title" class="fs-1" href="/">HampusMat's Git Repository</a>
					<p id="about">The source code of various of my projects</p>
				</div>
			</div>
			<div class="row mx-0 mt-5">
				<div id="projects-header" class="col ms-5">
					<p class="fs-2">Projects</p>
				</div>
				<div id="projects-search" class="col d-flex justify-content-end">
					<form>
						<input type="search" name="q">
						<input type="submit" value="Search">
					</form>
				</div>
			</div>
			<div class="row mx-0">
				<div class="col ms-5">
					<ul id="repos"></ul>
				</div>
			</div>
		</div>
	</body>
</html>