lbry-desktop/static/index.html

34 lines
947 B
HTML
Raw Normal View History

2019-03-05 05:46:57 +01:00
<!DOCTYPE html>
<html>
<head>
2019-04-18 20:32:58 +02:00
<meta charset="utf-8" />
2019-04-24 16:02:08 +02:00
<!-- @if TARGET='app' -->
<title>LBRY</title>
<!-- @endif -->
<!-- @if TARGET='web' -->
<title>lbry.tv</title>
2019-04-18 20:32:58 +02:00
<meta property="og:url" content="https://beta.lbry.tv" />
<meta property="og:title" content="LBRY On The Web" />
<meta property="og:description" content="All your favorite LBRY content in your browser." />
<meta property="og:image" content="/og.png" />
2019-04-24 16:02:08 +02:00
<!-- @endif -->
2019-03-05 05:46:57 +01:00
</head>
<body>
<div id="app"></div>
2019-04-04 23:05:23 +02:00
<script type="text/javascript">
// Use relative path if we are in electron
let src = 'ui.js';
const userAgent = navigator.userAgent.toLowerCase();
if (userAgent.indexOf('electron') === -1) {
src = `/${src}`;
}
const script = document.createElement('script');
script.setAttribute('src', src);
document.body.appendChild(script);
</script>
2019-03-05 05:46:57 +01:00
</body>
</html>