-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enter.php
50 lines (50 loc) · 2.18 KB
/
enter.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
<!DOCTYPE html>
<html class>
<head>
<meta charset="utf-8">
<meta content="width=device-width" name="viewport">
<?php if ($v = w($page->description ?? $site->description ?? "")): ?>
<meta content="<?= $v; ?>" name="description">
<?php endif; ?>
<?php if ('archive' === $page->x): ?>
<!-- Prevent search engines from indexing pages with `archive` state -->
<meta content="noindex" name="robots">
<?php endif; ?>
<meta content="<?= eat($page->author); ?>" name="author">
<title>
<?= w($t->reverse); ?>
</title>
<link href="<?= eat($url . '/favicon.ico'); ?>" rel="icon">
<link href="<?= eat($url->current(false, false)); ?>" rel="canonical">
</head>
<body class="layout-<?= $site->is('page') ? ($site->has('parent') ? 'post' : 'page') : 'default'; ?>">
<?= self::header(); ?>
<main class="container">
<?php if ($site->is('home')): ?>
<div class="hero mb-5 rounded">
<div class="align-items-center justify-content-between row">
<div class="col-md-6">
<?php if ($intro_title = $state->y->affiliates->intro->title ?? ""): ?>
<h1 class="font-weight-bold mb-4 serif-font">
<?= i($intro_title); ?>
</h1>
<?php endif; ?>
<?php if ($intro_description = $state->y->affiliates->intro->description ?? ""): ?>
<p class="lead mb-4">
<?= i($intro_description); ?>
</p>
<?php endif; ?>
<?php if ($intro_link = $state->y->affiliates->intro->link ?? ""): ?>
<a class="btn btn-dark btn-lg px-5 text-white" href="<?= eat(long($intro_link)); ?>">
<?= i($state->y->affiliates->intro->{'link-title'} ?? 'More'); ?>
</a>
<?php endif; ?>
</div>
<div class="col-md-6 pl-0 pl-lg-4 text-right">
<?php if ($intro_image = $state->y->affiliates->intro->image ?? ""): ?>
<img class="intro" height="500" src="<?= eat(Asset::URL(PATH . $intro_image)); ?>">
<?php endif; ?>
</div>
</div>
</div>
<?php endif; ?>