-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
118 lines (98 loc) · 3.81 KB
/
home.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
/**
* The main template file
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Studio Val
*/
get_header();
// === Graphic blocks definition
$blocks = [
studio_define_graphic_block('primary', 'large'),
studio_define_graphic_block('primary', 'small'),
];
// === Latests posts
$posts_args = array(
'post_type' => 'post',
'posts_per_page' => 6,
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
);
$posts_query = new WP_Query($posts_args);
// === Categories
$categories = get_categories(array(
'hide_empty' => false,
'exclude' => get_cat_ID('Uncategorized')
));
// === Icons
$icon_arrow = file_get_contents(get_template_directory_uri() . '/assets/svg/arrow-rounded.svg');
// === Custom data
$cta = array(
'title' => __('Partagez votre expertise ! 🖋️'),
'text' => __('Vous avez une expertise ou une expérience à partager ? Enrichissez ce blog en contribuant avec un article ! Que vous souhaitiez partager des conseils, promouvoir vos services ou simplement échanger avec la communauté, je serais ravi d\'en discuter avec vous. Contactez-moi dès maintenant pour explorer cette opportunité de collaboration.', 'studio-val'),
'button' => array(
'text' => __('Ça m\'intéresse ! ❤️', 'studio-val'),
'link' => array(
'url' => '/contact',
'target' => '_blank',
'title' => 'Envoyez-moi une demande pour contribuer sur ce blog !'
),
'color' => 'light',
)
);
?>
<main id="content" class="st-blog">
<section class="st-section boxed st-blog__header">
<div class="st-blog__title">
<h1><?php _e('<strong>Les actualités</strong> de Studio Val', 'studio-val'); ?></h1>
<p><?php _e('Par un développeur WordPress, pour les développeurs WordPress !', 'studio-val'); ?></p>
</div>
<?php if ($posts_query->have_posts()) : ?>
<?php $posts_query->the_post(); ?>
<a class="st-blog__hero" href="<?php echo get_permalink(); ?>">
<div class="st-blog__hero--image">
<?php the_post_thumbnail(); ?>
</div>
<div class="st-blog__hero--content">
<div class="st-blog__hero--text">
<span class="label"><?php _e('Nouveau', 'studio-val'); ?></span>
<h2><?php echo get_the_title(); ?></h2>
<p><?php echo studio_long_excerpt(55); ?></p>
</div>
<div class="st-blog__hero--meta">
<?php $hero_category = get_the_category(); ?>
<span class="category" href="<?php echo $hero_category[0]->slug; ?>"><?php echo $hero_category[0]->name; ?></span>
<time datetime="<?php echo get_the_date('Y-m-d'); ?>"><?php echo get_the_date('j F Y'); ?></time>
</div>
</div>
</a>
<?php endif; ?>
<?php echo studio_generate_graphic_blocks($blocks); ?>
</section>
<section class="st-section boxed st-blog__posts">
<h2><?php _e('Les articles <strong>récents</strong>', 'studio-val'); ?></h2>
<div class="st-blog__posts-list">
<?php if ($posts_query->have_posts()) : ?>
<?php while ($posts_query->have_posts()) : $posts_query->the_post(); ?>
<?php get_template_part('template-parts/card', 'post'); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
</div>
</section>
<section class="st-section boxed st-blog__cta">
<div class="st-callout-block">
<div class="st-callout-block__content">
<h2><?php echo $cta['title']; ?></h2>
<p><?php echo $cta['text']; ?></p>
</div>
<div class="st-callout-block__buttons">
<?php get_template_part('template-parts/button', null, $cta['button']); ?>
</div>
</div>
</section>
</main>
<?php
get_footer();