lbry.com/view/template/content/credit-reports.php
ポール ウェッブ 87d594469f Redesign
2019-04-05 16:19:51 -05:00

33 lines
1.2 KiB
PHP

<?php Response::setMetaDescription('Quarterly reports regarding usage of LBRY credits by LBRY Inc.') ?>
<main class="ancillary">
<section class="hero hero--half-height">
<div class="inner-wrap inner-wrap--center-hero">
<h1>Quarterly Credit Reports</h1>
</div>
</section>
<section>
<div class="inner-wrap">
<p>LBRY issues a quarterly report every 3 months in January, April, July, and October, covering the preceding 3 full months. These reports outline the corresponding transaction history as well as the current state of LBRY, Inc.'s balance sheet and anticipated future expenditures.</p>
<table>
<thead>
<tr>
<th>Date</th>
<th>Report</th>
<th>Balance Sheet</th>
</tr>
</thead>
<?php foreach ($posts as $post): ?>
<tr>
<td><?php echo strtoupper($post->getSlug()) ?></td>
<td><a href="<?php echo $post->getRelativeUrl() ?>" class="link-primary">Report</a></td>
<td><a href="<?php echo $post->getMetadataItem('sheet') ?>" class="link-primary">Sheet</a></td>
</tr>
<?php endforeach ?>
</table>
</div>
</section>
</main>