Skip to content

Commit

Permalink
Renomeia partials seguindo conveção do underline
Browse files Browse the repository at this point in the history
  • Loading branch information
brnocesar committed Nov 8, 2020
1 parent e94e15c commit 7faee76
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
{% block content %} {% endblock %}


{% include 'partials/footer.html' %}
{% include 'partials/_footer.html' %}


<!-- ##### All Javascript Files ##### -->
Expand Down
4 changes: 2 additions & 2 deletions apps/receitas/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends '_base.html' %}
{% load static %}
{% block content %}

Expand All @@ -8,7 +8,7 @@
<img src="{% static 'img/core-img/pizza.png' %}" alt="">
</div>

{% include 'partials/header.html' %}
{% include 'partials/_header.html' %}

<section class="best-receipe-area">
<div class="container">
Expand Down
9 changes: 4 additions & 5 deletions apps/receitas/templates/receita.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends '_base.html' %}
{% load static %}
{% block content %}
<!-- Preloader -->
Expand All @@ -7,10 +7,9 @@
<img src="{% static 'img/core-img/hamburger.png' %}" alt="">
</div>

{% include 'partials/header.html' %}
{% include 'partials/_header.html' %}

<!-- Receipe Post Search -->
<div class="receipe-post-search mb-80">
<!-- <div class="receipe-post-search mb-80">
<div class="container">
<form action="#" method="post">
<div class="row">
Expand All @@ -27,7 +26,7 @@
</div>
</form>
</div>
</div>
</div> -->

<!-- Receipe Slider -->
<div class="container">
Expand Down

0 comments on commit 7faee76

Please sign in to comment.