forked from wiktor/spejstore-new
fix: statics
This commit is contained in:
parent
6af75328f4
commit
35a48c3eee
|
@ -1,9 +1,11 @@
|
|||
{% load static %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: "Press Start 2P";
|
||||
src: url("static/fonts/pressstart2p-regular-webfont.woff2") format("woff2"),
|
||||
url("static/fonts/pressstart2p-regular-webfont.woff") format("woff");
|
||||
src: url("{% static fonts/pressstart2p-regular-webfont.woff2 %}") format("woff2"),
|
||||
url("{% static fonts/pressstart2p-regular-webfont.woff %}") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
{% load static %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: "Press Start 2P";
|
||||
src: url("static/fonts/pressstart2p-regular-webfont.woff2") format("woff2"),
|
||||
url("static/fonts/pressstart2p-regular-webfont.woff") format("woff");
|
||||
src: url("{% static fonts/pressstart2p-regular-webfont.woff2 %}") format("woff2"),
|
||||
url("{% static fonts/pressstart2p-regular-webfont.woff %}") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
<style>
|
||||
@font-face {
|
||||
font-family: "Press Start 2P";
|
||||
src: url("static/fonts/pressstart2p-regular-webfont.woff2") format("woff2"),
|
||||
url("static/fonts/pressstart2p-regular-webfont.woff") format("woff");
|
||||
src: url("{% static fonts/pressstart2p-regular-webfont.woff2 %}") format("woff2"),
|
||||
url("{% static fonts/pressstart2p-regular-webfont.woff %}") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
@font-face {
|
||||
font-family: "Press Start 2P";
|
||||
src: url("{% static fonts/pressstart2p-regular-webfont.woff2 %}") format("woff2"),
|
||||
url("{% fonts/pressstart2p-regular-webfont.woff %}") format("woff");
|
||||
url("{% static fonts/pressstart2p-regular-webfont.woff %}") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{% if category and category.icon_id %}
|
||||
<div class="containericon" title="{{ category.name }}"><img src="{% static /icons/{{ category.icon_id }}.svg %}" />
|
||||
<div class="containericon" title="{{ category.name }}"><img src="/static/icons/{{ category.icon_id }}.svg" />
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue