lbry.tech/app/components/footer.js

69 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-08-29 01:57:18 +02:00
"use strict";
// P A C K A G E S
import html from "choo/html";
import { require as local } from "app-root-path";
// V A R I A B L E S
import editLink from "./edit-link";
import emailSubscribe from "./email-subscribe";
const config = local("/config");
// E X P O R T
export default function (state) {
return html`
<section class="email-subscribe-container">
${emailSubscribe()}
</section>
<section class="alert" id="alert-beta">
<div class="inner-wrap">
<p><strong>This website is in beta and under heavy development.</strong><br/>All information should be considered incomplete and possibly incorrect and things may not work as expected.</p>
<br/><br/>
<p>Please do not share or link this site publicly while this message is here. This website is open source and you can <a href="https://github.com/lbryio/lbry.tech" target="_blank" rel="noopener noreferrer">contribute to it on Github</a>.</p>
<button id="close-alert">&times;</button>
</div>
</section>
<footer class="footer">
<div class="inner-wrap">
<ul>
<li>
<a href="//lbry.io" title="Rediscover content freedom"> LBRY.io</a> |
${editLink(state.href)}
</li>
<li><a href="/overview" title="LBRY overview">Overview</a></li>
<li><a href="/resources" title="View LBRY resources">Resources</a></li>
<li><a href="/contribute" title="Contribute to LBRY">Contribute</a></li>
<li><a href="/community" title="Interact with LBRY">Community</a></li>
<li><a href="/sitemap" title="">Sitemap</a></li>
</ul>
</div>
</footer>
<script src="/assets/scripts/app.js"></script>
<script>
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,"script","https://www.google-analytics.com/analytics.js","ga");
ga("create", "${config.ga}", "auto");
ga("send", "pageview");
</script>
`;
}