diff options
| author | 2020-10-06 16:18:11 +0300 | |
|---|---|---|
| committer | 2020-10-06 16:30:10 +0300 | |
| commit | d6a56e63ae64b2e3df40a9a4468289456b2182dc (patch) | |
| tree | 70dc56c22be831110eec82eb16646c69ff9da172 /pydis_site/templates/content/article.html | |
| parent | Merge branch 'dewikification' into guides-app (diff) | |
Rename content -> articles for visual part
Diffstat (limited to 'pydis_site/templates/content/article.html')
| -rw-r--r-- | pydis_site/templates/content/article.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pydis_site/templates/content/article.html b/pydis_site/templates/content/article.html index c340cdf6..5e090050 100644 --- a/pydis_site/templates/content/article.html +++ b/pydis_site/templates/content/article.html @@ -3,7 +3,7 @@ {% block title %}{{ article.metadata.title }}{% endblock %} {% block head %} - <meta property="og:title" content="Python Discord - {{ article.metadata.title|first }}" /> + <meta property="og:title" content="Python Discord - {{ article.metadata.title }}" /> <meta property="og:type" content="website" /> <meta property="og:description" content="{{ article.metadata.short_description }}" /> <link rel="stylesheet" href="{% static "css/content/articles.css" %}"> @@ -19,9 +19,9 @@ <div class="container"> <nav class="breadcrumb is-pulled-left" aria-label="breadcrumbs"> <ul> - <li><a href="/content">Pages</a></li> + <li><a href="/articles">Articles</a></li> {% if category_data.raw_name is not None %} - <li><a href="/content/category/{{ category_data.raw_name }}">{{ category_data.name }}</a></li> + <li><a href="/articles/category/{{ category_data.raw_name }}">{{ category_data.name }}</a></li> {% endif %} <li class="is-active"><a href="#">{{ article.metadata.title }}</a></li> </ul> |