This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
qdouze-wordpress-theme/index.php

11 lines
387 B
PHP
Raw Normal View History

2018-10-24 14:05:38 +02:00
<?php get_header(); ?>
<main class="col-md-8">
<h1 class="page-title"><i class="fa fa-fw fa-star"></i> À la une</h1>
<?php include(TEMPLATEPATH . '/components/featured.php'); ?>
<h1 class="page-title"><i class="fa fa-fw fa-clock-o"></i> Articles récents</h1>
<?php include(TEMPLATEPATH . '/components/posts-list.php'); ?>
2018-10-24 15:21:17 +02:00
</main>
2018-10-24 14:32:25 +02:00
<?php get_sidebar(); ?>
<?php get_footer(); ?>