diff options
author | HampusM <hampus@hampusmat.com> | 2021-04-17 22:45:12 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-04-17 22:45:12 +0200 |
commit | 15992970bc9d3eec402f6d85e40236e3095f0fc0 (patch) | |
tree | dd4bc2672d468b7ec74b41d089dae3b4ea4ed9f2 /src/index.html | |
parent | 7ec5335b7893bd35fa2fa345e5c88ee5dbd5a656 (diff) |
Finished repos api endpoint, created complete repos page & removed dist dir
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/src/index.html b/src/index.html index 1d91a18..0c607b3 100644 --- a/src/index.html +++ b/src/index.html @@ -2,10 +2,33 @@ <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="scss/style.scss"> + <script type="text/javascript" src="js/app.js"></script> </head> <body> - Hello world! + <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>
\ No newline at end of file |