Skip to content

Commit

Permalink
Quotation mark bug fix (getzola#2005)
Browse files Browse the repository at this point in the history
Changed double quotation mark " to single quotation ', otherwise the code doesn't work.
  • Loading branch information
YesSeri authored and Newbytee committed Feb 16, 2023
1 parent 7b9d42b commit 9538945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/documentation/getting-started/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,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 %}
```

Expand Down

0 comments on commit 9538945

Please sign in to comment.