mirror of
https://github.com/len0rd/personal-website.git
synced 2025-09-08 07:07:48 -04:00
barebones homepage, added static assets
This commit is contained in:
parent
47dd57e22d
commit
3de0c9a3a5
6 changed files with 42 additions and 13 deletions
|
@ -2,17 +2,20 @@
|
|||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<% include ../partials/includes %>
|
||||
<% include ../partials/include %>
|
||||
</head>
|
||||
|
||||
<body class="container">
|
||||
<body>
|
||||
<header>
|
||||
<% include ../partials/nav %>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div class="jumbotron">
|
||||
<h1>This is great</h1>
|
||||
<p>Welcome to templating using EJS</p>
|
||||
<div class="jumbotron img-jumbotron jumbotron-fluid">
|
||||
<div class="container">
|
||||
<h1 class="text-white">welcome to len0rdsNet</h1>
|
||||
<p class="text-white">i don't know what i'm doing</p>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -4,3 +4,4 @@
|
|||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js" integrity="sha384-o+RDsa0aLu++PJvFqy8fFScvbHFLtbvScb8AjopnFD+iEQ7wo/CG0xlczd+2O/em" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
|
||||
<link rel="stylesheet" type="text/css" href="css/site.css">
|
|
@ -1,3 +1,22 @@
|
|||
<nav class="navbar navbar-dark bg-dark">
|
||||
<!-- Navbar content -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<a class="navbar-brand" href="#">len0rdNet</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="#">Home
|
||||
<span class="sr-only">(current)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Pricing</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
Loading…
Add table
Add a link
Reference in a new issue