-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaqs.php
More file actions
37 lines (28 loc) · 849 Bytes
/
faqs.php
File metadata and controls
37 lines (28 loc) · 849 Bytes
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
<?php
session_start();
include_once "vendor/autoload.php";
require_once "redirect.php";
$_GLOBALS["pageTitle"] = "FAQs";
?>
<!doctype html>
<html lang="en" class="bg-info">
<head>
<?php include "includes/head-tag-contents.php"; ?>
</head>
<body>
<?php include "includes/navigation.php"; ?>
<section class="container-fluid px-0 bg-info">
<div class="container p-lg-5 p-md-4 p-3 px-0">
<div class="bg-light rounded-5 p-lg-5 p-md-4 p-3">
<h1 class="mb-ms-5 mb-3">Frequently Asked Questions</h1>
<?php
$Parsedown = new ParsedownExtra();
$faqs = file_get_contents('faqs.md');
echo $Parsedown->text($faqs);
?>
</div>
</div>
</section>
<?php include "includes/footer.php"; ?>
</body>
</html>