forked from thelasallian/tls-rantandrave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
films.php
74 lines (63 loc) · 2.39 KB
/
films.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
<?php $wp_url = "https://thelasallian.com/wp-json/wp/v2/posts?_fields=title,link,jetpack_featured_media_url,date,authors&tags=2147"; ?>
<?php require_once 'php/functions/functions-global.php'; ?>
<?php require_once 'php/functions/functions-subpages.php'; ?>
<?php require_once 'php/components/pagination-category-subpages.php'; ?>
<?php require_once 'php/session/session-subpages.php'; ?>
<!doctype html>
<html lang="en">
<head>
<?php require_once 'php/components/head.php' ?>
<link rel="stylesheet" href="css/subpages.css">
<!-- Title -->
<title>The LaSallian: Rant and Rave - Films</title>
</head>
<body>
<!-- Navbar -->
<?php
$nav_bg_class = 'nav-hollowbg';
require_once 'php/components/navbar.php'
?>
<!-- Subpage Header Styles -->
<?php
$most_recent_article = fetch_info('https://thelasallian.com/wp-json/wp/v2/posts?_fields=jetpack_featured_media_url&tags=2147&per_page=1&page=1');
$sh_bgimg = $most_recent_article[0]["jetpack_featured_media_url"];
$sh_gradientclass = 'sh-movie';
$sh_heading = 'Films';
$sh_iconpath = 'assets/movie.png';
?>
<!-- Subpage Header -->
<?php
render_subpage_header(
$sh_bgimg,
$sh_gradientclass,
$sh_heading,
$sh_iconpath
);
?>
<!-- Display Articles -->
<section class="subpage-articles">
<div class="container">
<div class="row row-cols-1 row-cols-md-2">
<!-- Fetch articles -->
<?php
$articles = $_SESSION["ARTICLE_INFO"];
$ac_class = 'sp-ac-movie';
?>
<!-- Render cards for each article -->
<?php render_subpage_article_cards($articles, $ac_class); ?>
</div>
<!-- Pagination Links -->
<?php render_page_links($page_count, basename(__FILE__)); ?>
</div>
</section>
<!-- Footer -->
<?php
$footer_bg = $sh_bgimg;
require_once 'php/components/footer.php';
?>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<!-- Navbar Scripts -->
<script src="js/navbar-subpages.js"></script>
</body>
</html>