mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-27 07:23:33 +00:00
19 lines
523 B
PHP
19 lines
523 B
PHP
<?php Response::setMetaDescription($post->getTitle()) ?>
|
|
|
|
<main class="ancillary">
|
|
<section class="hero hero--half-height">
|
|
<div class="inner-wrap inner-wrap--center-hero">
|
|
<h1><?php echo htmlentities($post->getTitle()) ?></h1>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="inner-wrap">
|
|
<div class="meta">
|
|
<a href="/credit-reports">« Credit Reports</a> | <a href="<?php echo $sheetUrl ?>">Sheet</a>
|
|
</div>
|
|
|
|
<?php echo $post->getContentHtml() ?>
|
|
</div>
|
|
</section>
|
|
</main>
|