mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
41 lines
1.8 KiB
PHP
41 lines
1.8 KiB
PHP
<?php Response::setMetaDescription(__('roadmap.description')) ?>
|
|
<?php NavActions::setNavUri('/learn') ?>
|
|
<?php echo View::render('nav/_header', ['isDark' => false]) ?>
|
|
<main>
|
|
<div class="hero hero-quote hero-img hero-img-short spacer1" title="Here Be Dragons" style="background-image: url(/img/here-be-dragons.jpg)">
|
|
<div class="hero-content-wrapper">
|
|
<div class="hero-content text-center">
|
|
<h1 class="cover-title">{{roadmap.title}}</h1>
|
|
<h2 class="cover-subtitle">Future plans for the journey into the land of dragons.</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div style="max-width: 800px; margin: 0 auto">
|
|
<p>Our top priorities, definitions of success, and target completion dates for key initiatives in <?php echo date('Y') ?> are outlined below.</p>
|
|
<div class="roadmap-container" id="project-roadmap">
|
|
<?php foreach ($items as $item): ?>
|
|
<div class="roadmap-item">
|
|
<h3 class="roadmap-item-title">
|
|
<?php if (isset($item['url']) && $item['url']): ?>
|
|
<a href="<?php echo $item['url'] ?>" class="link-primary"><?php echo $item['name'] ?></a>
|
|
<?php else: ?>
|
|
<?php echo $item['name'] ?>
|
|
<?php endif ?>
|
|
</h3>
|
|
<div class="roadmap-item-date">
|
|
<?php if (isset($item['quarter_date'])): ?>
|
|
<?php echo $item['quarter_date'] ?>
|
|
<?php else: ?>
|
|
<?php echo $item['date'] ? date('m-d-Y', strtotime($item['date'])) : '' ?>
|
|
<?php endif ?>
|
|
</div>
|
|
<div class="roadmap-item-content content markdown">
|
|
<?php echo $item['body'] ?: '<em class="no-results">No description</em>' ?>
|
|
</div>
|
|
</div>
|
|
<?php endforeach ?>
|
|
</div>
|
|
</div>
|
|
<?php echo View::render('nav/_learnFooter') ?>
|
|
</main>
|
|
<?php echo View::render('nav/_footer') ?>
|