Skip to content
Snippets Groups Projects
Commit da9acf19 authored by Joona Erkkilä's avatar Joona Erkkilä
Browse files

Upload New File

parent 13846373
No related branches found
No related tags found
No related merge requests found
<html>
<head>
<title>{% block title %}Web Store{% endblock %}</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
}
nav {
background-color: #f1f1f1;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 10px;
}
nav ul li a {
color: #333;
text-decoration: none;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
margin-top: auto;
}
</style>
</head>
<body>
<header>
<h1>Web Store</h1>
</header>
<nav>
<ul>
<li><a href="/store">Store</a></li>
<li><a href="/cart">Cart</a></li>
<li><a href="/login">Login</a></li>
<li><a href="/register">Register</a></li>
</ul>
</nav>
<main>
{% block content %}
{% endblock %}
</main>
<footer>
</footer>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment