summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2020-11-02 12:34:24 +0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-11-02 10:35:04 +0100
commit31946faf4fb669ee182b0ee027a286eb2fa9b35c (patch)
tree1b20d08fefb97032d3154978e9bd4fe0daac8eb8 /docs/intro
parente707a1bd9a485319421414f2d171c3faca9cd58c (diff)
[3.1.x] Updated {% static %} tag examples in docs to use single quotes where appropriate.
Backport of 42f3fafdfab01f6b04b817c45140e8309eecf84c from master
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>