mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
21 lines
1 KiB
PHP
21 lines
1 KiB
PHP
<?php Response::setMetaDescription('Access information and content in ways you never dreamed possible. Earn credits for your unused bandwidth and diskspace.') ?>
|
|
<?php echo View::render('nav/header', ['isDark' => false]) ?>
|
|
<main>
|
|
<div class="hero hero-quote hero-img spacer2" style="background-image: url(/img/cover-team.jpg)">
|
|
<div class="hero-content-wrapper">
|
|
<div class="hero-content text-center">
|
|
<h1 class="cover-title">The Front Desk</h1>
|
|
<h2 class="cover-subtitle">News and musings from the LBRY team.</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<section class="content spacer2">
|
|
<?php foreach($posts as $post): ?>
|
|
<div class="spacer1">
|
|
<h3><a href="<?php echo $post->getRelativeUrl() ?>" class="link-primary"><?php echo $post->getTitle() ?></a></h3>
|
|
<div class="meta" title="<?php echo $post->getDate()->format('F jS, Y') ?>"><?php echo $post->getDate()->format('M j, Y') ?></div>
|
|
</div>
|
|
<?php endforeach ?>
|
|
</section>>
|
|
</main>
|
|
<?php echo View::render('nav/footer') ?>
|