summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2020-11-02 12:34:24 +0300
committerGitHub <noreply@github.com>2020-11-02 10:34:24 +0100
commit42f3fafdfab01f6b04b817c45140e8309eecf84c (patch)
tree04ae705e3392467d451623de9841385ec1c0af1a /docs/intro
parentc8785b473f99a0dbc76f8a61b88904e2f44998ae (diff)
Updated {% static %} tag examples in docs to use single quotes where appropriate.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/overview.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/overview.txt b/docs/intro/overview.txt
index fa61e4ec57..c0d528527f 100644
--- a/docs/intro/overview.txt
+++ b/docs/intro/overview.txt
@@ -307,7 +307,7 @@ Here's what the "base.html" template, including the use of :doc:`static files
<title>{% block title %}{% endblock %}</title>
</head>
<body>
- <img src="{% static "images/sitelogo.png" %}" alt="Logo">
+ <img src="{% static 'images/sitelogo.png' %}" alt="Logo">
{% block content %}{% endblock %}
</body>
</html>