From aa8d88ef47b2cb4f562efbda7926b90d365ac5ba Mon Sep 17 00:00:00 2001 From: boyska <piuttosto@logorroici.org> Date: Thu, 25 Jun 2015 14:11:26 +0200 Subject: [PATCH] articles get slug class --- themes/bs3/templates/page.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/bs3/templates/page.html b/themes/bs3/templates/page.html index dbc24ad..2347cd4 100644 --- a/themes/bs3/templates/page.html +++ b/themes/bs3/templates/page.html @@ -28,8 +28,8 @@ {% endblock %} {% block content %} -<section id="content" class="body" lang="{{page.lang}}"> - <h1 class="entry-title">{{ page.title }}</h1> +<article id="content" class="body slug-{{page.slug}}" lang="{{page.lang}}"> + <h1 class="entry-title">{{ page.title }}</h1> {% import 'includes/translations.html' as translations with context %} {{ translations.translations_for(page) }} {% if PDF_PROCESSOR %} @@ -43,5 +43,5 @@ {% include 'includes/comments.html' %} {% endif %} </div> - </section> + </article> {% endblock %} -- GitLab