Skip to content

Commit

Permalink
fix static link
Browse files Browse the repository at this point in the history
  • Loading branch information
rasulkireev committed Sep 21, 2024
1 parent 0221af5 commit 1469b75
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/templates/pages/product_categories.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h2 class="text-2xl font-semibold text-blue-600 hover:text-blue-800">
"name": "Is It Keto",
"logo": {
"@type": "ImageObject",
"url": "{% static 'vendors/favicon/logo.png' %}"
"url": "{% static 'vendors/images/logo.png' %}"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/templates/pages/product_category_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h1 class="mb-8 text-3xl font-bold text-center text-gray-800">Products in {{ cat
"name": "Is It Keto",
"logo": {
"@type": "ImageObject",
"url": "{% static 'vendors/favicon/logo.png' %}"
"url": "{% static 'vendors/images/logo.png' %}"
}
}
{% if is_paginated %}
Expand Down
2 changes: 1 addition & 1 deletion frontend/templates/pages/products.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"name": "Is It Keto",
"logo": {
"@type": "ImageObject",
"url": "{% static 'vendors/favicon/logo.png' %}"
"url": "{% static 'vendors/images/logo.png' %}"
}
}
{% if is_paginated %}
Expand Down
4 changes: 2 additions & 2 deletions frontend/templates/products/product_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ <h3 class="text-lg font-semibold text-center text-blue-600">
"name": "Is It Keto",
"logo": {
"@type": "ImageObject",
"url": "{% static 'vendors/favicon/logo.png' %}"
"url": "{% static 'vendors/images/logo.png' %}"
}
},
"publisher": {
"@type": "Organization",
"name": "Is It Keto",
"logo": {
"@type": "ImageObject",
"url": "{% static 'vendors/favicon/logo.png' %}"
"url": "{% static 'vendors/images/logo.png' %}"
}
},
"headline": "{% if object.has_plural_title %}Are{% else %}Is{% endif %} {{ object.name }} Keto Friendly?",
Expand Down

0 comments on commit 1469b75

Please sign in to comment.