add roadmap message

This commit is contained in:
Jeremy Kauffman 2021-06-01 17:29:43 -04:00
parent eed6da9a4b
commit cd92e69257
5 changed files with 9 additions and 6 deletions

View file

@ -91,7 +91,7 @@
</checkbox-element> </checkbox-element>
</form> </form>
<?php else: ?> <?php else: ?>
<div class="notice notice-info spacer1"> <div class="notice notice-warning spacer1">
The YouTube Program is paused for maintenance. Enter your email address and we will notify you as soon as it returns. The YouTube Program is paused for maintenance. Enter your email address and we will notify you as soon as it returns.
If you have over 10K subs on YouTube, please <a href="https://docs.google.com/forms/d/1b9bEahq1L-hWaYN0MfnBZ8d0MnM4oQpsLFG1TlBHMrI/edit">use this form</a> for a manual sync request. If you have over 10K subs on YouTube, please <a href="https://docs.google.com/forms/d/1b9bEahq1L-hWaYN0MfnBZ8d0MnM4oQpsLFG1TlBHMrI/edit">use this form</a> for a manual sync request.
</div> </div>

View file

@ -9,7 +9,7 @@
<section> <section>
<div class="inner-wrap"> <div class="inner-wrap">
<div class="notice notice-info"> <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>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="helplbrysavecrypto.com">helplbrysavecrypto.com</a> for more.</p> <p>Please visit <a href="helplbrysavecrypto.com">helplbrysavecrypto.com</a> for more.</p>

View file

@ -10,7 +10,7 @@
<section> <section>
<div class="inner-wrap"> <div class="inner-wrap">
<div class="notice notice-info spacer1">For more regular updates, see <a href="https://open.lbry.com/@lbry">the official @lbry channel</a> on LBRY itself.</div> <div class="notice notice-warning spacer1">For more regular updates, see <a href="https://open.lbry.com/@lbry">the official @lbry channel</a> on LBRY itself.</div>
<ul class="news-items bulletless"> <ul class="news-items bulletless">
<?php foreach ($posts as $post): ?> <?php foreach ($posts as $post): ?>
<li class="news-item"> <li class="news-item">

View file

@ -10,6 +10,9 @@
<section> <section>
<div class="inner-wrap"> <div class="inner-wrap">
<div class="notice notice-warning spacer1 ">
For 2021, LBRY is not maintaining a public roadmap. Development is more active than ever and can be tracked on our <a href="https://github.com/lbryio">public GitHub</a>.
</div>
<p>Top priorities, definitions of success, status, and target completion dates for key initiatives in <p>Top priorities, definitions of success, status, and target completion dates for key initiatives in
<select id="roadmap-year-select"> <select id="roadmap-year-select">
<?php foreach ($years as $aYear): ?> <?php foreach ($years as $aYear): ?>
@ -48,7 +51,7 @@
</div> </div>
<?php endforeach ?> <?php endforeach ?>
<?php else: ?> <?php else: ?>
<div class="notice notice-info">No roadmap items found for this year.</div> <div class="notice notice-warning">No roadmap items found for this year.</div>
<?php endif ?> <?php endif ?>
</div> </div>
</div> </div>

View file

@ -35,6 +35,6 @@
@include notice(var(--lbry-white), var(--lbry-red-4), var(--lbry-red-5)); @include notice(var(--lbry-white), var(--lbry-red-4), var(--lbry-red-5));
} }
.notice-info { .notice-warning {
@include notice(var(--lbry-black), var(--lbry-yellow-1), var(--lbry-yellow-4)); @include notice(var(--lbry-black), var(--lbry-yellow-1), var(--lbry-yellow-4));
} }