Skip to content

Commit

Permalink
Add All Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sinalalebakhsh committed Jul 19, 2024
1 parent 90f6cf7 commit 1aebea3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
18 changes: 7 additions & 11 deletions pages/templates/pages/aboutus.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About us</title>
</head>
<body>
<h1>About Us</h1>
</body>
</html>
{% extends '_base.html' %}
{% block page_title %}
about us
{% endblock %}


<h1>About Us</h1>
12 changes: 6 additions & 6 deletions templates/_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,18 @@
<div class="mainmenu-nav d-none d-lg-block w-100 pr-3">
<ul class="mainmenu d-lg-flex jusity-content-end jusity-content-lg-start pt-4">
<li class="mainmenu__item menu-item-has-children active">
<a href="index.html" class="mainmenu__link">
<a href="{% url 'home' %}" class="mainmenu__link">
<span class="mm-text">خانه</span>
</a>
</li>
<li class="mainmenu__item menu-item-has-children">
<a href="Blog.html" class="mainmenu__link">
<span class="mm-text">وبلاگ</span>
<a href="{% url 'product_list' %}" class="mainmenu__link">
<span class="mm-text">کتاب</span>
</a>
</li>
<li class="mainmenu__item menu-item-has-children">
<a href="#" class="mainmenu__link">
<span class="mm-text">صفحات</span>
<a href="{% url 'aboutus' %}" class="mainmenu__link">
<span class="mm-text">درباره‌ما</span>
</a>
</li>
<li class="mainmenu__item">
Expand Down Expand Up @@ -123,7 +123,7 @@

{% block content %}{% endblock %}

<!-- ************************* JS Files ************************* -->
<!-- ************************* JS Files ************************* -->

<!-- jQuery JS -->
<script src="{% static 'js/vendor.js' %}"></script>
Expand Down

0 comments on commit 1aebea3

Please sign in to comment.