112 lines
3.8 KiB
HTML
112 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta charset="utf-8">
|
|
<title>TLC Creations</title>
|
|
<link rel="icon" type="image/x-icon" href="/assets/favicon.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css'>
|
|
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
|
|
|
|
@font-face {
|
|
font-family: 'BFCChristmasCards';
|
|
src: url('/assets/fonts/BFC Christmas Cards Christmas Font.otf') format('opentype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'ChristmasStyle';
|
|
src: url('/assets/fonts/ChristmasStyle.otf') format('opentype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Cointa';
|
|
src: url('/assets/fonts/Cointa.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Gabriola';
|
|
src: url('/assets/fonts/Gabriola.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Anastasia';
|
|
src: url('/assets/fonts/Anastasia Font.ttf') format('truetype');
|
|
}
|
|
|
|
body {
|
|
font-family: "Montserrat", sans-serif;
|
|
}
|
|
</style>
|
|
{% block links %}{% endblock links %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container-fluid" style="min-height: 100vh;">
|
|
|
|
<!-- HEADER -->
|
|
<div class="row fixed-top sticky-top">
|
|
<nav class="navbar navbar-expand-lg bg-body-tertiary">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#">TLC Creations</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
|
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
|
|
aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/fontsample">Fonts</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/about">About</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/contactus">Contact Us</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
|
|
<!-- CONTENT -->
|
|
<div class="row flex-grow-1">
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
|
|
<!-- FOOTER -->
|
|
<div class="row fixed-bottom sticky-bottom">
|
|
<div class="container-fluid text-center bg-light">
|
|
<footer>
|
|
<div>© 2024 TLC Creations</div>
|
|
<a href="https://fb.me/tlc.creationsmississauga" class="btn" target="_blank"><i
|
|
class="fab fa-facebook"></i></a>
|
|
<a href="https://instagram.com/tlc.creation" class="btn" target="_blank"><i class="fab fa-instagram"></i></a>
|
|
</footer>
|
|
</div><!-- /.container -->
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Bootstrap JS Bundle with Popper -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
|
crossorigin="anonymous"></script>
|
|
{% block scripts %}{% endblock scripts %}
|
|
</body>
|
|
|
|
</html> |