daux.io/templates/home.php

72 lines
2.7 KiB
PHP
Raw Permalink Normal View History

2015-04-23 10:24:50 +02:00
<?php $this->layout('theme::layout/00_layout') ?>
2017-02-23 23:15:07 +01:00
<?php $this->start('classes') ?>homepage<?php $this->stop() ?>
<div class="Navbar NoPrint">
<div class="Container">
<?php $this->insert('theme::partials/navbar_content'); ?>
2015-04-23 10:24:50 +02:00
</div>
</div>
2016-05-23 20:09:15 +02:00
<div class="Homepage">
<div class="HomepageTitle Container">
<?= ($config->hasTagline()) ? '<h2>' . $config->getTagline() . '</h2>' : '' ?>
2015-04-23 10:24:50 +02:00
</div>
<div class="HomepageImage Container">
<?= ($config->hasImage()) ? '<img class="homepage-image img-responsive" src="' . $config->getImage() . '" alt="' . $config->getTitle() . '">' : '' ?>
2016-05-23 20:09:15 +02:00
</div>
<div class="HomepageButtons">
<div class="Container">
2020-04-24 23:41:18 +02:00
<?php if ($config->getHTML()->hasRepository()) { ?>
<a href="https://github.com/<?= $config->getHTML()->getRepository(); ?>" class="Button Button--secondary Button--hero" rel="noopener noreferrer">
<?= $this->translate("View_on_github") ?>
</a>
<?php }
$view_doc = $this->translate("View_documentation");
2016-05-23 20:09:15 +02:00
foreach ($page['entry_page'] as $key => $node) {
echo '<a href="' . $node . '" class="Button Button--primary Button--hero">' . str_replace("__VIEW_DOCUMENTATION__", $view_doc, $key) . '</a>';
2016-05-23 20:09:15 +02:00
}
if ($config->getHTML()->hasButtons()) {
foreach ($config->getHTML()->getButtons() as $name => $link) {
echo '<a href="' . $link . '" class="Button Button--secondary Button--hero">' . $name . '</a>';
}
}
2016-05-23 20:09:15 +02:00
?>
</div>
2015-04-23 10:24:50 +02:00
</div>
</div>
2016-05-23 20:09:15 +02:00
<div class="HomepageContent">
<div class="Container">
<div class="Container--inner">
2016-05-23 20:09:15 +02:00
<div class="doc_content s-content">
<?= $page['content']; ?>
2015-04-23 10:24:50 +02:00
</div>
</div>
</div>
</div>
2016-05-23 20:09:15 +02:00
<div class="HomepageFooter">
<div class="Container">
<div class="Container--inner">
<?php if ($config->getHTML()->hasLinks()) { ?>
2016-05-23 20:09:15 +02:00
<ul class="HomepageFooter__links">
2020-04-24 23:41:18 +02:00
<?php foreach ($config->getHTML()->getLinks() as $name => $url) { ?>
<li><a href="<?= $url; ?>" target="_blank" rel="noopener noreferrer"><?= $name ?></a></li>
<?php } ?>
2016-05-23 20:09:15 +02:00
</ul>
<?php } ?>
2016-05-23 20:09:15 +02:00
<?php if ($config->getHTML()->hasTwitterHandles()) { ?>
2016-05-23 20:09:15 +02:00
<div class="HomepageFooter__twitter">
<div class="Twitter">
<?php $this->insert('theme::partials/twitter_buttons'); ?>
2016-05-23 20:09:15 +02:00
</div>
2015-04-23 10:24:50 +02:00
</div>
<?php } ?>
2015-04-23 10:24:50 +02:00
</div>
</div>
</div>