Skip to content

Commit

Permalink
Added a new landing page with links to different (nonexistent, as of …
Browse files Browse the repository at this point in the history
…now) pages
  • Loading branch information
a26blass committed Apr 25, 2024
1 parent 1a91ea9 commit ae8d1b2
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions views/index.jade
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
// index.pug
doctype html
html(lang="en")
head
meta(charset="UTF-8")
title #{title}
link(rel='stylesheet', href='./stylesheets/style.css')
// Add Bootstrap CDN for styling
link(rel='stylesheet', href='https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css')
body
header
nav.navbar.navbar-expand-lg.navbar-light.bg-light
.container
a.navbar-brand(href='#') Alex's Website
button.navbar-toggler(type='button', data-toggle='collapse', data-target='#navbarNav', aria-controls='navbarNav', aria-expanded='false', aria-label='Toggle navigation')
span.navbar-toggler-icon
#navbarNav.collapse.navbar-collapse
ul.navbar-nav.ml-auto
li.nav-item
a.nav-link(href='/') Home
li.nav-item
a.nav-link(href='/about') About
li.nav-item
a.nav-link(href='/portfolio') Portfolio
// Add more links as needed
header.container.text-center.py-5(id='home')
h1 Welcome to Alex's Website
main
main.container.text-center.py-5
p This is the main content of my website.
footer
footer.container.text-center.py-3
p Updated 04/26/2024 : 23:07

0 comments on commit ae8d1b2

Please sign in to comment.