From 53af927c227409e82a7aca7cd54c665b382beb69 Mon Sep 17 00:00:00 2001 From: David Beniamine <david.beniamine@tetras-libre.fr> Date: Mon, 14 Jan 2019 15:00:02 +0100 Subject: [PATCH] Better page preview --- article.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/article.php b/article.php index 09cb97b..8282be7 100644 --- a/article.php +++ b/article.php @@ -1,7 +1,15 @@ <?php theme_include('header'); ?> <section class="content wrap" id="article-<?php echo article_id(); ?>"> - <h1><?php echo article_img(article_slug());?><?php echo article_title(); ?></h1> - + <div class="row"> + <div class="col-md-6 col-sd-12"> + <?php echo article_img(article_slug());?> + </div> + <div class="col-md-6 col-sd-12"> + <h1> + <?php echo article_title(); ?> + </h1> + </div> + </div> <article> <?php echo article_html(); ?> </article> -- GitLab