Skip to content

Commit 8fef06d

Browse files
committed
Fixed static tags.
The Problem The tag being used was called staticfiles rather than static. The Solution Simply change the tag to static.
1 parent e1c8692 commit 8fef06d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

martor_demo/app/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load staticfiles %}<!DOCTYPE html>
1+
{% load static %}<!DOCTYPE html>
22
<html lang="en-us">
33
<head>
44
<title>{% block title %}{% endblock %} :: Martor</title>

martor_demo/app/templates/test_markdownify.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load staticfiles %}
1+
{% load static %}
22
{% load martortags %}
33
<!DOCTYPE html>
44
<html lang="en-us">

0 commit comments

Comments
 (0)