mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
39 lines
1.6 KiB
PHP
39 lines
1.6 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">
|
|
<div class="notice notice-warning">
|
|
<p>LBRY Inc has ceased issuing Credit reports due to regulatory uncertainty around communication of this information. We will resume these reports if and when the SEC provides clear guidance that these reports are legal to produce.</p>
|
|
|
|
<p>Please visit <a href="https://helplbrysavecrypto.com">helplbrysavecrypto.com</a> for more.</p>
|
|
</div>
|
|
<br/>
|
|
<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>
|