Skip to content

Commit

Permalink
fix(seo): more descriptive link texts (instead of 'read more')
Browse files Browse the repository at this point in the history
  • Loading branch information
Restioson committed Oct 28, 2024
1 parent 41bba40 commit b97dc27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/templates/app/documents.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h2>
</div>
<p class="limit-text-width">
{{ item.description|truncatewords:30 }}
<a href="{% url 'document_detail' item.document.id %}">{% trans "Read more" %}</a>
<a href="{% url 'document_detail' item.document.id %}">{% trans "More about the document" %}</a>
</p>

{% if item.languages %}
Expand Down
2 changes: 1 addition & 1 deletion app/templates/app/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h2>
<div>
<p class="limit-text-width">
{{ item.description|truncatewords:30 }}
<a href="{% url 'project_detail' item.project.id %}">{% trans "Read more" %}</a>
<a href="{% url 'project_detail' item.project.id %}">{% trans "More about the project" %}</a>
</p>

{% if item.languages %}
Expand Down

0 comments on commit b97dc27

Please sign in to comment.