Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 47 additions & 2 deletions website/templates/navbar.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,47 @@
<!-- your html code here -->
<p>Hello, I'm the navbar.html</p>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
</head>

<body>


<div class="container-fluid w-100 bg-dark">
<nav class="navbar navbar-expand-lg bg-darkgit pull">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#"></a>

<a class="navbar-brand" href="#">Start Bootstrap</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</nav>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
crossorigin="anonymous"></script>
</body>
26 changes: 24 additions & 2 deletions website/templates/services.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
<!-- your html code here -->
<p>Hello, I'm the services.html</p>
<p>Hello, I'm the services section and I was loaded using ajax from templates/services.html</p>


<div class="card mb-3 w-100">
<div class="row g-0 align-items-center">
<div class="col-md-4 d-flex justify-content-center">
<div class="ratio ratio-1x1 w-75">
<img src="https://i.pinimg.com/1200x/fd/c9/26/fdc9266a56051c23c96955da324f77c9.jpg"
class="w-100 h-100 object-fit-cover rounded-circle" alt="teclado">
</div>
</div>
<div class="col-md-8">
<div class="card-body text-center">
<h1 class="card-title mb-3"><strong>This Second Heading</strong> <span class="fw-normal">Is Pretty Cool
Too</span>.</h1>

<p class="card-text text-body-secondary mx-auto" style="max-width: 620px;">Donec ullamcorper nulla non
metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus
magna,
vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p>
</div>
</div>
</div>

</div>
9 changes: 6 additions & 3 deletions website/templates/tagline.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<!-- your html code here -->
<!-- Also called a hero image or a jumbotron before bootstrap 5. This might be helpful: https://getbootstrap.com/docs/5.1/examples/jumbotron/ -->
<p>Hello, I'm the tagline and I was loaded using ajax from templates/tagline.html</p>
<header class="header-hero">
<div class="header-content">
<h1 class="hero-title">One Page Wonder</h1>
<h2 class="hero-subtitle">Will Knock Your Socks Off</h2>
</div>
</header>