diff options
-rw-r--r-- | dev-random/templates/article.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-random/templates/article.html b/dev-random/templates/article.html index 4bd02f5..827698f 100644 --- a/dev-random/templates/article.html +++ b/dev-random/templates/article.html @@ -4,7 +4,7 @@ {% block headers %} {{ super() }} <meta name="author" content="{{ article.author }}" /> - <meta name="keywords" content="{{ articles.tags|join(' ')}}" /> + <meta name="keywords" content="{{ article.tags|join(', ') }}" /> {% endblock %} {% block title %}{{ article.title }} — {{ super() }}{% endblock %} |