-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfront-page.php
More file actions
70 lines (68 loc) · 3.29 KB
/
front-page.php
File metadata and controls
70 lines (68 loc) · 3.29 KB
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
<?php get_header(); ?>
<main id="content" class="l-front-page">
<?php
get_template_part('template-parts/block/hero', '', [
'title' => 'A WordPress starter theme for classical themes built with ACF',
'subtitle' => 'WordPress the Cone way',
'description' => 'This a minimalistic and modular WordPress starter theme with Spruce CSS and Alpine.js. We use this structure to create all of our custom themes for WP.',
'buttons' => [
[
'type' => 'default',
'button' => [
'url' => 'https://example.com',
'title' => 'Learn More',
],
],
[
'type' => 'outline',
'button' => [
'url' => 'https://example.com/contact',
'title' => 'Contact Us',
],
],
],
]);
get_template_part('template-parts/block-static/feature-grid', '', [
'heading' => [
'title' => 'Working Faster and More Consistent',
'subtitle' => 'Features of Base',
'description' => 'This a minimalistic and modular WordPress starter theme with Spruce CSS and Alpine.js. We use this structure to create all of our custom themes for WP.',
'class' => 'heading--center',
],
'items' => [
[
'icon' => get_template_directory_uri().'/assets/img/feature-grid/1.png',
'title' => 'Customizable Design',
'description' => 'Easily modify styles and layouts using intuitive customization options.',
],
[
'icon' => get_template_directory_uri().'/assets/img/feature-grid/2.png',
'title' => 'Optimized Performance',
'description' => 'Built with lightweight code for fast loading times and smooth user experience.',
],
[
'icon' => get_template_directory_uri().'/assets/img/feature-grid/3.png',
'title' => 'Secure Foundation',
'description' => 'Follow the latest security standards to ensure a safe site for your users.',
],
[
'icon' => get_template_directory_uri().'/assets/img/feature-grid/4.png',
'title' => 'Developer Friendly',
'description' => 'Includes clean, well-commented code to streamline development and customization.',
],
[
'icon' => get_template_directory_uri().'/assets/img/feature-grid/5.png',
'title' => 'Responsive Design',
'description' => 'A fully responsive layout that looks great on any device, from mobile to desktop.',
],
[
'icon' => get_template_directory_uri().'/assets/img/feature-grid/6.png',
'title' => 'Future Ready',
'description' => 'Easily extendable to adapt to new WordPress features and requirements.',
],
],
]);
?>
</main>
<?php
get_footer();