-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblank.php
More file actions
45 lines (41 loc) · 1.72 KB
/
blank.php
File metadata and controls
45 lines (41 loc) · 1.72 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
<?php defined( 'App' ) or die( 'BoidCMS' ); global $App, $layout ?>
<!DOCTYPE html>
<html lang="<?= noir_site_config( 'lang' ) ?>">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="<?= $App->esc( $layout[ 'descr' ] ?? '' ) ?>">
<meta name="keywords" content="<?= $App->esc( $layout[ 'keywords' ] ?? '' ) ?>">
<meta name="author" content="<?= $App->esc( noir_config( 'author', false )[ 'name' ] ) ?>">
<meta name="theme-color" content="#000000">
<meta name="generator" content="BoidCMS">
<title><?= $App->esc( ( $layout[ 'title' ] ?? '' ) . ' ' . noir_config( 'seperator' ) . ' ' . noir_site_config( 'title' ) ) ?></title>
<?php include ( __DIR__ . '/parts/head.php' ) ?>
<?= $App->get_action( 'site_head' ) ?>
</head>
<body>
<?= $App->get_action( 'site_top' ) ?>
<!-- Header -->
<?php include ( __DIR__ . '/parts/header.php' ) ?>
<!-- End Header -->
<!-- Content -->
<main id="content" class="ss-m-5 ss-mx-auto">
<div class="ss-container">
<?= $App->get_action( 'page_top' ) ?>
<hr class="ss-hr ss-mobile ss-w-8 ss-auto">
<h1 class="ss-center"><?= $App->esc( $layout[ 'title' ] ?? '' ) ?></h1>
<?= $App->get_action( 'site_under_title' ) ?>
<hr class="ss-hr ss-mobile ss-w-8 ss-auto">
<div class="article ss-container ss-large">
<?= ( $layout[ 'content' ] ?? '' ) ?>
</div>
<?= $App->get_action( 'page_end' ) ?>
</div>
</main>
<!-- End Content -->
<!-- Footer -->
<?php include ( __DIR__ . '/parts/footer.php' ) ?>
<!-- End Footer -->
<?= $App->get_action( 'site_end' ) ?>
</body>
</html>