mirror of https://gitlab.com/brutaldon/brutaldon
Fix up static links in base template
This commit is contained in:
parent
ea5f0244af
commit
c6e0c7d9c1
|
@ -1,3 +1,5 @@
|
||||||
|
{% load static %}
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
@ -11,18 +13,18 @@
|
||||||
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.0.11/css/fork-awesome.min.css"
|
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.0.11/css/fork-awesome.min.css"
|
||||||
integrity="sha256-MGU/JUq/40CFrfxjXb5pZjpoZmxiP2KuICN5ElLFNd8="
|
integrity="sha256-MGU/JUq/40CFrfxjXb5pZjpoZmxiP2KuICN5ElLFNd8="
|
||||||
crossorigin="anonymous">
|
crossorigin="anonymous">
|
||||||
<link rel="stylesheet" href="/static/css/brutaldon.css">
|
<link rel="stylesheet" href="{% static "css/brutaldon.css" %}">
|
||||||
{% else %}
|
{% else %}
|
||||||
<link rel="stylesheet" href="/static/css/fullbrutalism.css" >
|
<link rel="stylesheet" href="{% static "css/fullbrutalism.css" %}" >
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<link rel="icon" href="/static/images/brutaldon.png" type="image/png">
|
<link rel="icon" href="{% static "images/brutaldon.png" %}" type="image/png">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{% block navbar %}
|
{% block navbar %}
|
||||||
<nav class="navbar" role="navigation" aria-label="main navigation">
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
||||||
<div class="navbar-brand">
|
<div class="navbar-brand">
|
||||||
<a class="navbar-item">
|
<a class="navbar-item">
|
||||||
<img src="/static/images/brutaldon.png"
|
<img src="{% static "images/brutaldon.png" %}"
|
||||||
width="32" height="32" alt="Brutaldon">
|
width="32" height="32" alt="Brutaldon">
|
||||||
</a>
|
</a>
|
||||||
<!-- navbar items, navbar burger... -->
|
<!-- navbar items, navbar burger... -->
|
||||||
|
|
Loading…
Reference in New Issue