52 lines
1011 B
PHP
Executable File
52 lines
1011 B
PHP
Executable File
<?php snippet('header') ?>
|
|
|
|
<main>
|
|
<header class="intro">
|
|
<h1><?= $page->title() ?></h1>
|
|
</header>
|
|
|
|
<div class="layout">
|
|
|
|
<aside>
|
|
<section>
|
|
<h2>Address</h2>
|
|
<div class="text">
|
|
<?= $page->address()->kt() ?>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Email</h2>
|
|
<div class="text">
|
|
<?= html::email($page->email()) ?>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Phone</h2>
|
|
<div class="text">
|
|
<?= html::tel($page->phone()) ?>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>On the web</h2>
|
|
<div class="text">
|
|
<ul>
|
|
<?php foreach ($page->social()->toStructure() as $social): ?>
|
|
<li><?= html::a($social->url(), $social->platform()) ?></li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
|
|
</aside>
|
|
|
|
<div class="text">
|
|
<?= $page->text()->kt() ?>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php snippet('footer') ?>
|