Quotation mark bug fix (#2005)

Changed double quotation mark " to single quotation ', otherwise the code doesn't work.
This commit is contained in:
YesSeri 2022-10-30 21:43:05 +01:00 committed by GitHub
parent eba1913cdf
commit 53cf920291
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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