-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
132 lines (130 loc) · 3.95 KB
/
index.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
$pageTitle = 'Home';
$additionalCSS = ['/echolog-template/style.css'];
$additionalJS = ['/echolog-template/script.js'];
define('ROOTPATH', __DIR__);
ob_start();
?>
<section class="carousel">
<div class="carousel__item active">
<img src="./assets/images/carousel-1.png" alt="Carousel Image 1" />
</div>
<div class="carousel__item">
<img src="./assets/images/carousel-2.jpg" alt="Carousel Image 2" />
</div>
<div class="carousel__item">
<img src="./assets/images/carousel-3.jpg" alt="Carousel Image 3" />
</div>
<div class="carousel__item">
<img src="./assets/images/carousel-4.jpg" alt="Carousel Image 4" />
</div>
<div class="carousel__front-text">
<h1 class="carousel__title">Track your games, share your thoughts, build your collection</h1>
<a class="carousel__cta" href="/echolog-template/pages/register">Get Started - It's lit</a>
</div>
</section>
<div class="container">
<section class="popular-games mt-5">
<p class="fs-2">Popular Games to Track</p>
<div class="gallery">
<?php
$src = "/echolog-template/assets/images/image-1.png";
$title = "God of War";
include './ui/image-card/index.php';
?>
<?php
$src = "/echolog-template/assets/images/image-2.png";
$title = "Fallout New Vegas";
include './ui/image-card/index.php';
?>
<?php
$src = "/echolog-template/assets/images/image-3.png";
$title = "Red Dead Redemption 2";
include './ui/image-card/index.php';
?>
<?php
$src = "/echolog-template/assets/images/image-4.png";
$title = "Death Stranding";
include './ui/image-card/index.php';
?>
<?php
$src = "/echolog-template/assets/images/image-5.png";
$title = "Silent Hill 2";
include './ui/image-card/index.php';
?>
<?php
$src = "/echolog-template/assets/images/image-6.png";
$title = "Silent Hill 3";
include './ui/image-card/index.php';
?>
</div>
</section>
<section class="popular-reviews mt-5">
<p class="fs-2">Most Popular Reviews</p>
<?php
$game_image = "/echolog-template/assets/images/image-4.png";
$game_title = "Death Stranding";
$username = "Deacon";
$rating = 5;
$text = "\"KODJIMA IS GENIUS\"";
$like_count = 200;
include './ui/review-card/index.php';
?>
<?php
$game_image = "/echolog-template/assets/images/image-7.png";
$game_title = "God of War 3";
$username = "Kratos";
$rating = 4;
$text = "The man, the legend and the myth himself... KRATOSSS";
$like_count = 100;
include './ui/review-card/index.php';
?>
<?php
$game_image = "/echolog-template/assets/images/image-8.png";
$game_title = "Wolf Among Us 2";
$username = "Bigby";
$rating = 3;
$text = "Wake up baby, my new personality just dropped";
$like_count = 50;
include './ui/review-card/index.php';
?>
</section>
<section class="popular-collections">
<p class="fs-2">Most Rated Collections</p>
<div class="collections">
<?php
$title = 'for when you want to feel something';
$username = 'bel';
$like_count = 198375;
$comment_count = 1236;
include './ui/collection-card/index.php';
?>
<?php
$title = 'Games everyone should play at least once during their lifetime';
$username = 'fcbarcelona';
$like_count = 164824;
$comment_count = 1024;
include './ui/collection-card/index.php';
?>
<?php
$title = 'Official top 250 games of all time';
$username = 'Dave Vis';
$like_count = 123456;
$comment_count = 987;
include './ui/collection-card/index.php';
?>
</div>
</section>
<hr class="mt-5" />
<p class="fs-3 text-center">...aaaand so much more</p>
<?php
$text = 'Sign Up';
$href = '/echolog-template/pages/register';
$class = 'px-3 text-center';
include './ui/button/index.php';
?>
</div>
<?php
$content = ob_get_clean();
include './layout/index.php';
?>