Skip to content

Commit

Permalink
Added Static Files as Well ✅
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammadali-Akbarov committed Sep 2, 2023
1 parent d0e2b7c commit 1aaa764
Show file tree
Hide file tree
Showing 8 changed files with 247 additions and 637 deletions.
47 changes: 47 additions & 0 deletions apps/shop/templates/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>

<html lang="en">

{% load static %}

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="static/images/logo.png" type="image/x-icon" />
<title>Welcome to our Restaurant</title>

<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">

<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery-js/1.4.0/css/lightgallery.min.css">

<link rel="stylesheet" href="{% static 'css/style.css' %}">
<!-- custom css file link -->

</head>

<body>
{% include 'sections/header.html' %}
{% block content %}

{% endblock %}
{% include 'sections/footer.html' %}


<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery-js/1.4.0/js/lightgallery.min.js"></script>

<!-- custom js file link -->
<script src="static/js/script.js"></script>

<script>
lightGallery(document.querySelector('.gallery .gallery-container'));
</script>

</body>

</html>
Loading

0 comments on commit 1aaa764

Please sign in to comment.