Skip to content

Commit 53cf920

Browse files
authored
Quotation mark bug fix (#2005)
Changed double quotation mark " to single quotation ', otherwise the code doesn't work.
1 parent eba1913 commit 53cf920

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/documentation/getting-started/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ The `index.html` file inside the `templates` directory should be:
220220
<h1 class="title">
221221
This is my blog made with Zola.
222222
</h1>
223-
<p>Click <a href="{{/* get_url(path="@/blog/_index.md") */}}">here</a> to see my posts.</p>
223+
<p>Click <a href="{{/* get_url(path='@/blog/_index.md') */}}">here</a> to see my posts.</p>
224224
{% endblock content %}
225225
```
226226

0 commit comments

Comments
 (0)