-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
46 lines (34 loc) · 1.35 KB
/
about.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
<?php
use LiturgicalCalendar\Frontend\Utilities;
include_once "common.php";
$ABOUT_US = _("The Liturgical Calendar project is curated by a group of volunteer catholic programmers and experts in Catholic liturgy, seeking to serve the Church.");
?>
<!doctype html>
<html lang="<?php echo $i18n->LOCALE; ?>">
<head>
<title><?php echo _("Liturgical Calendar - About us") ?></title>
<?php include_once('./layout/head.php'); ?>
</head>
<body class="sb-nav-fixed">
<?php include_once('./layout/header.php'); ?>
<!-- Page Heading -->
<h1 class="h3 mb-2 text-black" style="--bs-text-opacity: .6;"><?php echo _("Liturgical Calendar - About us"); ?></h1>
<p><?php echo $ABOUT_US; ?></p>
<div class="row">
<?php Utilities::generateCard('DONJOHN'); ?>
<?php Utilities::generateCard('MIKETRUSO'); ?>
</div>
<div class="row">
<?php Utilities::generateCard('MICHAELSHELTON'); ?>
<?php Utilities::generateCard('STEVENVANROODE'); ?>
</div>
<div class="row">
<?php Utilities::generateCard('MIKEKASBERG'); ?>
<?php Utilities::generateCard('GABRIELCHOW'); ?>
</div>
<div class="row">
<?php Utilities::generateCard('CHRISSHERREN'); ?>
</div>
<?php include_once('./layout/footer.php'); ?>
</body>
</html>