mirror of
https://github.com/LBRYFoundation/lbryorg.git
synced 2025-09-03 12:30:13 +00:00
Merge pull request #6 from LBRYians/gh-pages
merging gh-pages to master
This commit is contained in:
commit
650fcc54b4
25 changed files with 815 additions and 2359 deletions
145
Contributing.md
Normal file
145
Contributing.md
Normal file
|
@ -0,0 +1,145 @@
|
|||
## Contributing
|
||||
-------------
|
||||
Contributing in lbry.org is **EASY AS HELL** <br>
|
||||
So let's get started 😉: <br>
|
||||
|
||||
---------
|
||||
### Prerequisites :
|
||||
---------
|
||||
- Markdown Editor [i.e Typora] / Code Editor [i.e VsCode] Or A Simple notepad Editor .
|
||||
- Some Basic Knowledge in Markdown Syntax [If editing a markdown based Page]
|
||||
- Some Basic knowledge in HTML Syntax [If editing an HTML based page]
|
||||
--------------
|
||||
### Method 1: Through GitHub
|
||||
--------------
|
||||
Well You can easily edit any file on github. For example if you want to edit a few words or some typos. <br>
|
||||
To do that :
|
||||
- Create an [GitHub Account](https://github.com/join)
|
||||
- Navigate to the file you want to edit [i.e. swarm.md]
|
||||
|
||||

|
||||
- After clicking on that will open this 👇 Page.
|
||||

|
||||
|
||||
- Click on the edit 🖊 icon in Top Right
|
||||
- A fork will be created and you can submit your changes with a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)
|
||||
----------
|
||||
### Method 2: Cloning Locally
|
||||
----------
|
||||
- To clone locally you need [Git](https://git-scm.com/) . Or for easier Git management you can use [GitKraken](https://www.gitkraken.com/invite/gtG6Etur) <br>
|
||||
Clone address : <br>
|
||||
`https://github.com/LBRYians/lbry-org-new.git`
|
||||
- Open the desired file in your favourite editor
|
||||
- Edit and save the changes
|
||||
- [Commit and Push](https://help.github.com/en/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line)
|
||||
--------
|
||||
### Understanding Markdown Font Matter
|
||||
--------
|
||||
Every MD file contains these [Font Matters](https://jekyllrb.com/docs/front-matter/) :
|
||||

|
||||
|
||||
- <u>**title:**</u> Title appears as a Heading on top of every page like this 👇
|
||||

|
||||
- <u>**subhead:**</u> Subhead stands for Sub-heading Like this 👇
|
||||

|
||||
You can use emojis which must be in `:emojiname:`format
|
||||
|
||||
- <u>**bg-image:**</u> You can add Customized background images for each pages . To do that upload your image in `/img` then copy the relative path and paste it here.
|
||||
- <u>**layout:**</u> Layout refers to the page layouts included in `_layout` Folder. `Default` is the common layout for most pages.
|
||||
- <u>**permalink:**</u> Permalink is a relative path to pages. Usually pages exist in root directory. The format is `/Pagename/` For example in Swarm page It's `/swarm/`
|
||||
|
||||
----------
|
||||
### Libs AKA Assets
|
||||
----------
|
||||
All assets [Except images] are loaded from `/lib`Folder
|
||||
|
||||
- **_includes:** Contains header , head , nav and footer of `default.html`
|
||||
|
||||
- **/img** folder contains all the images used in the site
|
||||
|
||||
- **/lib/** :
|
||||
|
||||
- <u>**bootstrap:**</u> Contains all bootstrap ingredients
|
||||
|
||||
- <u>**css:**</u> Contains all the css used in both homepage and and article pages
|
||||
|
||||
- <u>**fontawesome:**</u> Contains awesome fonts
|
||||
|
||||
- <u>**fonts/oxygen:**</u> Contains "oxygenfonts" from google
|
||||
|
||||
- <u>**jquery:**</u> Of course jquery script :slightly_smiling_face:
|
||||
|
||||
- <u>**JS:**</u> contains all the JS scripts used in the site
|
||||
|
||||
----------
|
||||
### Editing an existing page
|
||||
-----
|
||||
Editing an existing page is as easy as breaking a wall with a Pin [Just a Joke 😉]
|
||||
- <u>**Markdowns:**</u> <br>
|
||||
Most Text rich pages pull their Text contents from Markdown files located in `root directory`. To edit simply Locate the related markdown / .md file and Edit it using a text editor with [Proper Syntaxes](https://www.markdownguide.org/basic-syntax/)
|
||||
|
||||
- <u>**HTML:**</u> <br> Homepage and layout > Default.html [*in ./_layouts*] can be easily edited using a Code Editor . For more references those codes are Well-commented.
|
||||
|
||||
---
|
||||
|
||||
### Adding New pages
|
||||
|
||||
--------
|
||||
|
||||
Adding new pages are easy as breathing [Well in most cases :stuck_out_tongue:] . <br>
|
||||
|
||||
- <u>**Step 1:**</u> Create
|
||||
|
||||
Create and upload a markdown file using this layout
|
||||
|
||||
```markdown
|
||||
---
|
||||
title : Pagetitle
|
||||
subhead : Some funky and simple subheading :emoji:
|
||||
bg-image : "../img/pathtoBackGround-Image.png"
|
||||
layout : layoutname [default]
|
||||
permalink : /filename/
|
||||
---
|
||||
Markdown based content and stylings
|
||||
blah blah blah
|
||||
blah blah blah
|
||||
The End
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <u>**Step 2:**</u> Add in homepage
|
||||
|
||||
Open `index.html` in root directory . <br>
|
||||
|
||||
Scroll down to navbar section which starts and ends with `<!--Navbar Menu Links-->` comment <br>add a line `<a class="nav-item nav-link" href="./asinpermalink/">PageName</a> ` <br>
|
||||
|
||||
Save :beer:
|
||||
|
||||
- <u>**Step 3:**</u> Add in `./_layouts/default.html
|
||||
|
||||
Scroll down to navbar section which starts and ends with `<!--Navbar Menu Links-->` comment <br>
|
||||
|
||||
add a line `<a class="nav-item nav-link" href="../asinpermalink/">PageName</a> ` <br>
|
||||
|
||||
## Remember : In homepage there is one dot[.] in `<a>---href=""<a>` But in default.html there's TWO DOTS [.]
|
||||
|
||||
So don't copy paste same thing in two places :wink: .
|
||||
|
||||
|
||||
|
||||
----
|
||||
|
||||
### Adding a new layout
|
||||
|
||||
----
|
||||
|
||||
All new layouts goes into `_layouts` folder . Try to keep it's name case insensitive and easily readable.
|
||||
|
||||
Head to jekyll docs for more detailed explaination about [creating layouts](https://jekyllrb.com/docs/step-by-step/04-layouts/) .
|
||||
|
||||
Which ever layout you create make sure **NOT TO CREATE NEW CODES THAT ARE ALREADY MADE ** in `_includes` Most importantly the **Nav bar**
|
||||
|
||||
|
9
_config.yml
Normal file
9
_config.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
values:
|
||||
defaults:
|
||||
- scope:
|
||||
type: default
|
||||
layout: default
|
||||
|
||||
|
||||
# Build Settings
|
||||
markdown: kramdown
|
34
_includes/footer.html
Normal file
34
_includes/footer.html
Normal file
|
@ -0,0 +1,34 @@
|
|||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item" style="padding-left: 1rem;">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
18
_includes/head.html
Normal file
18
_includes/head.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>LBRY Foundation</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="shortcut icon" href="../img/small-logo.png" type="image/png">
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css">
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!-- CUSTOM CSS -->
|
||||
<link rel="stylesheet" href="../lib/css/article.css">
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<!-- /CUSTOM CSS -->
|
||||
</head>
|
38
_includes/nav.html
Normal file
38
_includes/nav.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<!--Github Logo on Right-->
|
||||
<span class="navbar-brand order-1 mr-0">
|
||||
<a href="https://github.com/LBRYians/lbry-org-new/" target="_blank" style="color: #FFFFFF;">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
</span>
|
||||
<!--Github Logo on Right-->
|
||||
<!--Dropdown toggle for smaller screens-->
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<!--Dropdown toggle for smaller screens-->
|
||||
<!--Foundaton Logo-->
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<!--Foundaton Logo-->
|
||||
<!--Navbar Menu Links-->
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<a class="nav-item nav-link" href="../branding/">Branding</a>
|
||||
<a class="nav-item nav-link" href="../tavern/">Tavern</a>
|
||||
<a class="nav-item nav-link" href="../swarm/">Swarm</a>
|
||||
<a class="nav-item nav-link" href="../governance/">Governance</a>
|
||||
<a class="nav-item nav-link" href="../chat/">Chat</a>
|
||||
<a class="nav-item nav-link" href="../roadmap/">Roadmap</a>
|
||||
<a class="nav-item nav-link" href="../podcast/">Podcast</a>
|
||||
</div>
|
||||
<!--Navbar Menu Links-->
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
0
_includes/readme.md
Normal file
0
_includes/readme.md
Normal file
56
_layouts/default.html
Normal file
56
_layouts/default.html
Normal file
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<!-- HeadPart -->
|
||||
{% include head.html %}
|
||||
<!-- /HeadPart -->
|
||||
|
||||
<body data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
|
||||
<!-- NavPart -->
|
||||
{% include nav.html %}
|
||||
<!-- /NavPart -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" id="global-parallax">
|
||||
<img src="{{ page.bg-image }}" data-depth-factor="3" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img" />
|
||||
<div class="parallax-mask"></div>
|
||||
<div class="parallax-bg"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;" id="#">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">{{ page.title }}</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">{{ page.subhead }}</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<div class="container-fluid above-parallax">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- FooterPart -->
|
||||
{% include footer.html %}
|
||||
<!-- /FooterPart -->
|
||||
|
||||
|
||||
</div>
|
||||
<!-- /globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
|
||||
</body>
|
||||
</html>
|
82
branding.html
Normal file
82
branding.html
Normal file
|
@ -0,0 +1,82 @@
|
|||
---
|
||||
title : Branding Assets
|
||||
subhead : Download official LBRY Foundation branding assets✏️📏🖌️.
|
||||
bg-image : "../img/foundation-branding-background-art.png"
|
||||
layout : default
|
||||
permalink : /branding/
|
||||
---
|
||||
|
||||
|
||||
<h2 class="display-4 text-center my-5 text-white">LBRY Branding</h2>
|
||||
<hr class="subhead">
|
||||
<div class="container">
|
||||
<img src="../img/lbry-logo.png" class="rounded mx-auto d-block" alt="lbry-foundation-logo">
|
||||
</div>
|
||||
|
||||
<p class="text-center"><a href="./assets/assets.rar"><small class="text-muted text-center"><i class="fas fa-download"></i> Download Logo</small></a></p>
|
||||
<hr class="content">
|
||||
|
||||
<!--logo-->
|
||||
<h2 class="my-4 text-center" id="logo">Logo</h2>
|
||||
<div class="row text-white">
|
||||
<div class="col-md-5 col-lg-3 col-xl-3 mx-auto">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<div class="card-body">
|
||||
<img src="../img/logo.png" class="rounded mx-auto d-block" alt="lbry-foundation-logo">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="content">
|
||||
<!--/logo-->
|
||||
|
||||
<!--colors-->
|
||||
<h2 class="my-4 text-center" id="colors">Colors</h2>
|
||||
<div class="row col-md-6 col-lg-4 text-white mx-auto">
|
||||
<div class="col-md-6 col-lg-6 mx-auto text-center">
|
||||
<div class="card mb-1 lbry-teal-green">
|
||||
<div class="card-body">
|
||||
</div>
|
||||
</div>
|
||||
<code style="color: #FFFFFF;" class="text-center">#28d4e2 <br> rgb(40, 212, 226) <br> hsl(185, 76%, 52%) <br> hwb(185, 16%, 11%) <br> C8, 16%, 11%</code>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-6 mx-auto text-center">
|
||||
<div class="card mb-1 lbry-dark-green">
|
||||
<div class="card-body">
|
||||
</div>
|
||||
</div>
|
||||
<code style="color: #FFFFFF;" class="text-center">#00343e <br> rgb(0,52,62) <br> hsl(192, 100%, 12%) <br> hwb(192, 0%, 76%) <br> C20, 0%, 76%</code>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="content">
|
||||
<!--/colors-->
|
||||
|
||||
<!--fonts-->
|
||||
<h2 class="my-4 text-center" id="fonts">Fonts & Typography</h2>
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-6 col-lg-6">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<div class="card-body">
|
||||
<h1>H1</h1>
|
||||
<h2>H2</h2>
|
||||
<h3>H3</h3>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">Google Fonts: <a href="https://fonts.google.com/specimen/Oxygen" target="_blank">Oxygen</a></p>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-6">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<div class="card-body">
|
||||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
|
||||
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
||||
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
|
||||
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
|
||||
non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">Google Fonts: <a href="https://fonts.google.com/specimen/Oxygen" target="_blank">Oxygen</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<!--/fonts-->
|
|
@ -1,204 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LBRY Foundation - Branding</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="icon" href="../img/small-logo.png" type="image/png" />
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css" />
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css" />
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM CSS-->
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<link rel="stylesheet" href="../lib/css/article.css" />
|
||||
<!--/CUSTOM CSS-->
|
||||
</head>
|
||||
|
||||
<body id="branding" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/tree/master/branding" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<!-- <a class="nav-item nav-link active" href="#">Branding<span class="sr-only">(current)</span></a> -->
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Branding
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#branding">Branding<span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#logo">Logo</a>
|
||||
<a class="dropdown-item" href="#colors">Colors</a>
|
||||
<a class="dropdown-item" href="#fonts">Fonts & Typography</a>
|
||||
</div>
|
||||
</li>
|
||||
<a class="nav-item nav-link" href="../tavern/">Tavern</a>
|
||||
<a class="nav-item nav-link" href="../swarm/">Swarm</a>
|
||||
<a class="nav-item nav-link" href="../governance/">Governance</a>
|
||||
<a class="nav-item nav-link" href="../chat/">Chat</a>
|
||||
<a class="nav-item nav-link" href="../podcast/">Podcast</a>
|
||||
<a class="nav-item nav-link" href="../roadmap/">Roadmap</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" id="global-parallax">
|
||||
<img src="../img/foundation-branding-background-art.png" data-depth-factor="3" alt="bg-img" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img">
|
||||
<div class="parallax-bg"></div>
|
||||
<div class="parallax-mask"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">Branding Assets</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">Download official LBRY Foundation branding assets✏️📏🖌️</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<div class="container-fluid above-parallax">
|
||||
<h2 class="display-4 text-center my-5 text-white">LBRY Branding</h2>
|
||||
<hr class="subhead">
|
||||
<div class="container">
|
||||
<img src="../img/lbry-logo.png" class="rounded mx-auto d-block" alt="lbry-foundation-logo">
|
||||
</div>
|
||||
|
||||
<p class="text-center"><a href="./assets/assets.rar"><small class="text-muted text-center"><i class="fas fa-download"></i> Download Logo</small></a></p>
|
||||
<hr class="content">
|
||||
|
||||
<!--logo-->
|
||||
<h2 class="my-4 text-center" id="logo">Logo</h2>
|
||||
<div class="row text-white">
|
||||
<div class="col-md-5 col-lg-3 col-xl-3 mx-auto">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<div class="card-body">
|
||||
<img src="../img/logo.png" class="rounded mx-auto d-block" alt="lbry-foundation-logo">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="content">
|
||||
<!--/logo-->
|
||||
|
||||
<!--colors-->
|
||||
<h2 class="my-4 text-center" id="colors">Colors</h2>
|
||||
<div class="row col-md-6 col-lg-4 text-white mx-auto">
|
||||
<div class="col-md-6 col-lg-6 mx-auto text-center">
|
||||
<div class="card mb-1 lbry-teal-green">
|
||||
<div class="card-body">
|
||||
</div>
|
||||
</div>
|
||||
<code style="color: #FFFFFF;" class="text-center">#28d4e2 <br> rgb(40, 212, 226) <br> hsl(185, 76%, 52%) <br> hwb(185, 16%, 11%) <br> C8, 16%, 11%</code>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-6 mx-auto text-center">
|
||||
<div class="card mb-1 lbry-dark-green">
|
||||
<div class="card-body">
|
||||
</div>
|
||||
</div>
|
||||
<code style="color: #FFFFFF;" class="text-center">#00343e <br> rgb(0,52,62) <br> hsl(192, 100%, 12%) <br> hwb(192, 0%, 76%) <br> C20, 0%, 76%</code>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="content">
|
||||
<!--/colors-->
|
||||
|
||||
<!--fonts-->
|
||||
<h2 class="my-4 text-center" id="fonts">Fonts & Typography</h2>
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-6 col-lg-6">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<div class="card-body">
|
||||
<h1>H1</h1>
|
||||
<h2>H2</h2>
|
||||
<h3>H3</h3>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">Google Fonts: <a href="https://fonts.google.com/specimen/Oxygen" target="_blank">Oxygen</a></p>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-6">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<div class="card-body">
|
||||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
|
||||
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
||||
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
|
||||
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
|
||||
non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">Google Fonts: <a href="https://fonts.google.com/specimen/Oxygen" target="_blank">Oxygen</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<!--/fonts-->
|
||||
</div>
|
||||
|
||||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item" style="padding-left: 1rem;">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
||||
|
||||
</div>
|
||||
<!-- /globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
</body>
|
||||
</html>
|
39
chat.md
Normal file
39
chat.md
Normal file
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
title : Chat
|
||||
subhead : Join the LBRY Chat💬.
|
||||
bg-image : "../img/foundation-chat-background-art.png"
|
||||
layout : default
|
||||
permalink : /chat/
|
||||
---
|
||||
|
||||
The main community chat is hosted via Discord and located at chat.lbry.org.
|
||||
Some Hives maintain separate chat rooms that can be discovered by checking the [list of Hives.](https://lbryians.github.io/lbry-org-new/swarm/#hives)
|
||||
|
||||
# The Main Chat
|
||||
The main community discord is a massive chat server used by over 68000 community members.
|
||||
There you can...
|
||||
|
||||
- Explore and develop ideas
|
||||
- Help test new releases
|
||||
- Participate in contests and competitions
|
||||
- Get technical support
|
||||
- Find your place in the [The Swarm](https://lbryians.github.io/lbry-org-new/swarm) by creating or joining a LBRY [hive](https://lbryians.github.io/lbry-org-new/swarm/#hives)
|
||||
- Get funding through the [The Tavern](https://lbryians.github.io/lbry-org-new/tavern/) for an [Initiative](https://lbryians.github.io/lbry-org-new/tavern/#initiatives) or [Project](https://lbryians.github.io/lbry-org-new/tavern/#project_grants)
|
||||
- Chat with other LBRY users and creators from around the world about anything at all!
|
||||
|
||||
# Joining the Chat
|
||||
|
||||
1. Go [here](https://discord.com/invite/Z3bERWA) and follow the instructions to make a Discord account and join the server.
|
||||
2. Once you are in the server, follow the instructions to verify that you are a human.
|
||||
3. Say hi!!
|
||||
4. Explore and join rooms.
|
||||
A lot of communication happens via channels that start hidden, organized around Hives. Check out this [table for the full list](https://lbryians.github.io/lbry-org-new/swarm/#hives).
|
||||
If the hive is listed as having a role on the LBRY discord, assign yourself one using **!roles** command in **#hiveroles** channel.
|
||||
|
||||
# Other Things to Know
|
||||
|
||||
If you are looking to create a hive, join the **#makeahive** channel and follow the instructions on the [Swarm](https://lbryians.github.io/lbry-org-new/swarm/) page of this wiki.
|
||||
|
||||
Don't be afraid to ask for help with anything in the **#help** channel.
|
||||
|
||||
Otherwise, stick around in the #general channel and feel free to explore!
|
209
chat/index.html
209
chat/index.html
|
@ -1,209 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>LBRY Foundation - Chat</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="shortcut icon" href="../img/small-logo.png" type="image/png">
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css">
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!-- CUSTOM CSS -->
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<link rel="stylesheet" href="../lib/css/article.css">
|
||||
<!-- /CUSTOM CSS -->
|
||||
</head>
|
||||
|
||||
<body id="chat" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/tree/master/chat" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<a class="nav-item nav-link" href="../branding/">Branding</a>
|
||||
<a class="nav-item nav-link" href="../tavern/">Tavern</a>
|
||||
<a class="nav-item nav-link" href="../swarm/">Swarm</a>
|
||||
<a class="nav-item nav-link" href="../governance/">Governance</a>
|
||||
<!-- <a class="nav-item nav-link active" href="#">Chat<span class="sr-only">(current)</span></a> -->
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Chat
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#chat">Chat<span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#main_chat">The Main Chat</a>
|
||||
<a class="dropdown-item" href="#join_chat">Joining the Chat</a>
|
||||
<a class="dropdown-item" href="#other_things">Other Things to Know</a>
|
||||
</div>
|
||||
</li>
|
||||
<a class="nav-item nav-link" href="../podcast/">Podcast</a>
|
||||
<a class="nav-item nav-link" href="../roadmap/">Roadmap</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" id="global-parallax">
|
||||
<img src="../img/foundation-chat-background-art.png" data-depth-factor="3" alt="bg-img" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img" />
|
||||
<div class="parallax-mask"></div>
|
||||
<div class="parallax-bg"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content" id="chat">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">Chat</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">Join the LBRY Chat.</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<!--article-container-->
|
||||
<div class="container-fluid above-parallax">
|
||||
<!--main-row-->
|
||||
<div class="row">
|
||||
<!--main-column-->
|
||||
<div class="col-lg-10 col-xl-8 offset-sm-0 offset-md-0 offset-lg-1 offset-xl-2">
|
||||
<p>
|
||||
The main community chat is hosted via Discord and located at <a href="https://discord.com/invite/cHJMGp4" target="_blank">chat.lbry.org</a>. <br>
|
||||
Some Hives maintain separate chat rooms that can be discovered by checking the <a href="../swarm/#hives">list of Hives</a>.
|
||||
</p>
|
||||
|
||||
<!--row-->
|
||||
<div class="row">
|
||||
<!--col-1-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="main_chat">
|
||||
<h2 class="mb-2 text-white text-center">The Main Chat</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>The main community discord is a massive chat server used by over 68000 community members. <br>
|
||||
There you can... </p>
|
||||
<ul>
|
||||
<li>Explore and develop ideas</li>
|
||||
<li>Help test new releases</li>
|
||||
<li>Participate in contests and competitions</li>
|
||||
<li>Get technical support</li>
|
||||
<li>Find your place in the <a href="../swarm">The Swarm</a> by creating or joining a LBRY <a href="../swarm/#hives">hive</a></li>
|
||||
<li>Get funding through the <a href="../tavern/">The Tavern</a> for an <a href="../tavern/#initiatives">Initiative</a> or <a href="../tavern/#project_grants">Project</a></li>
|
||||
<li>Chat with other LBRY users and creators from around the world about anything at all!</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-1-->
|
||||
|
||||
<!--col-2-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="join_chat">
|
||||
<h2 class="mb-2 text-white text-center">Joining the Chat</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<ol>
|
||||
<li>Go <a href="https://discord.com/invite/Z3bERWA" target="_blank">here</a> and follow the instructions to make a Discord account and join the server.</li>
|
||||
<li>Once you are in the server, follow the instructions to verify that you are a human.</li>
|
||||
<li>Say hi!!</li>
|
||||
<li>
|
||||
Explore and join rooms. <br>
|
||||
A lot of communication happens via channels that start hidden, organized around Hives.
|
||||
Check out this <a href="../swarm/#hives">table for the full list</a>. <br>
|
||||
If the hive is listed as having a role on the LBRY discord, assign yourself one using <code>!roles</code> command in <strong>#hiveroles</strong> channel.
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-2-->
|
||||
|
||||
<!--col-3-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="other_things">
|
||||
<h2 class="mb-2 text-white text-center">Other Things to Know</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>If you are looking to create a hive,
|
||||
join the <strong>#makeahive</strong> channel and follow the instructions on the <a href="../swarm/">Swarm</a> page of this wiki. </p>
|
||||
<p>Don't be afraid to ask for help with anything in the <strong>#help</strong> channel. </p>
|
||||
<p>Otherwise, stick around in the <strong>#general</strong> channel and feel free to explore! </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-3-->
|
||||
</div>
|
||||
<!--row-->
|
||||
</div>
|
||||
<!--main-column-->
|
||||
</div>
|
||||
<!--/main-row-->
|
||||
</div>
|
||||
<!--/article-container-->
|
||||
|
||||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
||||
|
||||
</div>
|
||||
<!-- /globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
</body>
|
||||
|
||||
</html>
|
62
governance.html
Normal file
62
governance.html
Normal file
|
@ -0,0 +1,62 @@
|
|||
---
|
||||
title : Governance
|
||||
subhead : The LBRY Foundation is US-based non-profit corporation governed by a board of directors.🏛️
|
||||
bg-image : "../img/foundation-governance-background-art.png"
|
||||
layout : default
|
||||
permalink : /governance/
|
||||
---
|
||||
|
||||
<!-- Board of Directors -->
|
||||
<h2 class="display-4 text-center my-5 text-white" id="board">Board of Directors</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-4 scroll-fade" data-fade-delay="100">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<img class="card-img-top" src="../img/Jeremy-Kauffman.jpg" alt="Jeremy Kauffman">
|
||||
<div class="card-body">
|
||||
<h4 class="card-title">Jeremy Kauffman</h4>
|
||||
<p class="card-text">CEO of LBRY Inc., and founding board member of LBRY Foundation Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-4 scroll-fade" data-fade-delay="300">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<img class="card-img-top" src="../img/Julie-Sigwart.jpg" alt="Julie Sigwart">
|
||||
<div class="card-body">
|
||||
<h4 class="card-title">Julie Sigwart</h4>
|
||||
<p class="card-text">Community Director at LBRY Inc., and founding board member of LBRY Foundation Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-4 scroll-fade" data-fade-delay="200">
|
||||
<div class="card lbry-dark">
|
||||
<img class="card-img-top" src="../img/Jon-Ringo.jpg" alt="Jon Ringo">
|
||||
<div class="card-body">
|
||||
<h4 class="card-title">Jon Ringo</h4>
|
||||
<p class="card-text">First community elected board member of LBRY Foundation, Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Board of Directors -->
|
||||
<hr class="content"/>
|
||||
|
||||
<div id="about" class="row">
|
||||
<!--Board Elections-->
|
||||
<div class="col-md-6 col-lg-6 order-lg-1" id="board_elections">
|
||||
<h2 class="mb-4">Board Elections</h2>
|
||||
<p>The first board election was the December 2019 Board Election, won by Jon Ringo.</p>
|
||||
<p>The board is expected to be add several more members through 2020.</p>
|
||||
</div>
|
||||
<!--/Board Elections-->
|
||||
|
||||
<div class="col-md-6 col-lg-6 order-lg-2" id="future_structure">
|
||||
<h2 class="mb-4">Future Structure</h2>
|
||||
<p>The Foundation is expected to integrate network organization principles through 2020.
|
||||
The intent is to decentralize decision making and management powers
|
||||
throughout the LBRY network and community as they develop.</p>
|
||||
</div>
|
||||
</div>
|
|
@ -1,179 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LBRY Foundation - Governance</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="icon" href="../img/small-logo.png" type="image/png" />
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css" />
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css" />
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM CSS-->
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<link rel="stylesheet" href="../lib/css/article.css" />
|
||||
<!--/CUSTOM CSS-->
|
||||
</head>
|
||||
|
||||
<body id="governance" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/tree/master/governance" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<a class="nav-item nav-link" href="../branding/">Branding</a>
|
||||
<a class="nav-item nav-link" href="../tavern/">Tavern</a>
|
||||
<a class="nav-item nav-link" href="../swarm/">Swarm</a>
|
||||
<!-- <a class="nav-item nav-link active" href="#">Governance <span class="sr-only">(current)</span></a> -->
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Governance
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#governance">Governance<span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#board">Board of Directors</a>
|
||||
<a class="dropdown-item" href="#board_elections">Board Elections</a>
|
||||
<a class="dropdown-item" href="#future_structure">Future Structure</a>
|
||||
</div>
|
||||
</li>
|
||||
<a class="nav-item nav-link" href="../chat/">Chat</a>
|
||||
<a class="nav-item nav-link" href="../podcast/">Podcast</a>
|
||||
<a class="nav-item nav-link" href="../roadmap/">Roadmap</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" id="global-parallax">
|
||||
<img src="../img/foundation-governance-background-art.png" data-depth-factor="3" alt="bg-img" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img">
|
||||
<div class="parallax-bg"></div>
|
||||
<div class="parallax-mask"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">Governance</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">The LBRY Foundation is US-based non-profit corporation governed by a board of directors.🏛️</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<div class="container-fluid above-parallax">
|
||||
<!-- Board of Directors -->
|
||||
<h2 class="display-4 text-center my-5 text-white" id="board">Board of Directors</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-4 scroll-fade" data-fade-delay="100">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<img class="card-img-top" src="../img/Jeremy-Kauffman.jpg" alt="Jeremy Kauffman">
|
||||
<div class="card-body">
|
||||
<h4 class="card-title">Jeremy Kauffman</h4>
|
||||
<p class="card-text">CEO of LBRY Inc., and founding board member of LBRY Foundation Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-4 scroll-fade" data-fade-delay="300">
|
||||
<div class="card mb-3 lbry-dark">
|
||||
<img class="card-img-top" src="../img/Julie-Sigwart.jpg" alt="Julie Sigwart">
|
||||
<div class="card-body">
|
||||
<h4 class="card-title">Julie Sigwart</h4>
|
||||
<p class="card-text">Community Director at LBRY Inc., and founding board member of LBRY Foundation Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-4 scroll-fade" data-fade-delay="200">
|
||||
<div class="card lbry-dark">
|
||||
<img class="card-img-top" src="../img/Jon-Ringo.jpg" alt="Jon Ringo">
|
||||
<div class="card-body">
|
||||
<h4 class="card-title">Jon Ringo</h4>
|
||||
<p class="card-text">First community elected board member of LBRY Foundation, Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Board of Directors -->
|
||||
<hr class="content"/>
|
||||
|
||||
<div id="about" class="row">
|
||||
<!--Board Elections-->
|
||||
<div class="col-md-6 col-lg-6 order-lg-1" id="board_elections">
|
||||
<h2 class="mb-4">Board Elections</h2>
|
||||
<p>The first board election was the December 2019 Board Election, won by Jon Ringo.</p>
|
||||
<p>The board is expected to be add several more members through 2020.</p>
|
||||
</div>
|
||||
<!--/Board Elections-->
|
||||
|
||||
<div class="col-md-6 col-lg-6 order-lg-2" id="future_structure">
|
||||
<h2 class="mb-4">Future Structure</h2>
|
||||
<p>The Foundation is expected to integrate network organization principles through 2020.
|
||||
The intent is to decentralize decision making and management powers
|
||||
throughout the LBRY network and community as they develop.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
||||
</div>
|
||||
<!-- /globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
</body>
|
||||
</html>
|
48
index.html
48
index.html
|
@ -1,3 +1,7 @@
|
|||
---
|
||||
title: Home
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
|
@ -21,40 +25,40 @@
|
|||
</head>
|
||||
|
||||
<body id="home" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top ">
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/blob/master/index.html" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup"
|
||||
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<!--Github Logo on Right-->
|
||||
<span class="navbar-brand order-1 mr-0">
|
||||
<a href="https://github.com/LBRYians/lbry-org-new/" target="_blank" style="color: #FFFFFF;">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
</span>
|
||||
<!--Github Logo on Right-->
|
||||
<!--Dropdown toggle for smaller screens-->
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="./">
|
||||
<img src="./img/logo.png" alt="lbry-foundation-logo">
|
||||
<!--Dropdown toggle for smaller screens-->
|
||||
<!--Foundaton Logo-->
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="./img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse navbar-dark" id="navbarNavAltMarkup">
|
||||
<!--Foundaton Logo-->
|
||||
<!--Navbar Menu Links-->
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Home
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#home">Home <span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#about">About</a>
|
||||
<a class="dropdown-item" href="#lbryians">Lbryians</a>
|
||||
<a class="dropdown-item" href="#basics">The Basics</a>
|
||||
<a class="dropdown-item" href="#twitter">LBRY Foundation Tweets</a>
|
||||
</div>
|
||||
</li>
|
||||
<a class="nav-item nav-link" href="./branding">Branding</a>
|
||||
<a class="nav-item nav-link" href="./">Home</a>
|
||||
<a class="nav-item nav-link" href="./branding/">Branding</a>
|
||||
<a class="nav-item nav-link" href="./tavern/">Tavern</a>
|
||||
<a class="nav-item nav-link" href="./swarm/">Swarm</a>
|
||||
<a class="nav-item nav-link" href="./governance/">Governance</a>
|
||||
<a class="nav-item nav-link" href="./chat/">Chat</a>
|
||||
<a class="nav-item nav-link" href="./podcast/">Podcast</a>
|
||||
<a class="nav-item nav-link" href="./roadmap/">Roadmap</a>
|
||||
<a class="nav-item nav-link" href="./podcast/">Podcast</a>
|
||||
</div>
|
||||
<!--Navbar Menu Links-->
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
|
|
@ -54,6 +54,7 @@ html {
|
|||
color: white;
|
||||
padding: 2rem;
|
||||
z-index: 100;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.parallax {
|
||||
|
@ -110,6 +111,11 @@ nav {
|
|||
background-color: rgb(11, 90, 121);
|
||||
border-radius: 0.2rem;
|
||||
}
|
||||
.navbar-center {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translatex(-50%);
|
||||
}
|
||||
/* /Navbar */
|
||||
|
||||
/* Special Branded Color Classes*/
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
// Parallax
|
||||
const depthFactor = 5; // Depth of the image wrt to the 0 z-index. Infinity being at the same distance as the rest of the content and 1 being as far away as possible.
|
||||
const parallaxOffset = 20;
|
||||
$(window).on('scroll', () => {
|
||||
const movedBy = window.scrollY;
|
||||
|
||||
$('.parallax').each((i, parallax) => {
|
||||
$(parallax).find('.parallax-layer').each((i, layer) => {
|
||||
const depth = $(layer).attr('data-depth-factor') || depthFactor; // dynamically get depthFactor
|
||||
if ($(window).height() - parallax.getBoundingClientRect().top >= parallaxOffset) {
|
||||
$(parallax).find('.parallax-layer').each((i, layer) => {
|
||||
const depth = $(layer).attr('data-depth-factor') || depthFactor; // dynamically get depthFactor
|
||||
|
||||
$(layer).css({
|
||||
transform: `translateY(+${movedBy / depth}px)` // Move differently than the rest of the window
|
||||
$(layer).css({
|
||||
transform: `translateY(+${movedBy / depth}px)` // Move differently than the rest of the window
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
// /Parallax
|
||||
|
@ -23,19 +25,19 @@ $(window).on('scroll', () => {
|
|||
// /Transparent Navbar
|
||||
|
||||
// ScrollFade Anim
|
||||
const fadeOffset = 50;
|
||||
const fadeOffset = -10;
|
||||
const fadeDuration = 500;
|
||||
const fadeDelay = 0;
|
||||
|
||||
$(window).on('scroll', () => {
|
||||
$(document).on('scroll DOMContentLoaded', () => {
|
||||
$('.scroll-fade').each((i, elem) => {
|
||||
const offset = $(elem).attr('data-fade-offset') || fadeOffset;
|
||||
const duration = $(elem).attr('data-fade-duration') || fadeDuration;
|
||||
const delay = $(elem).attr('data-fade-delay') || fadeDelay;
|
||||
|
||||
if ($(window).height() - elem.getBoundingClientRect().top >= offset) {
|
||||
$(elem).delay(delay).animate({opacity: 1}, duration).css({transition: `transform ${duration / 1000}s`}).css({transform: 'scale(1)'});
|
||||
$(elem).delay(delay).animate({opacity: 1}, duration).css({transition: `transform ${duration / 1000}s`}).css({transform: 'scale(1)'}).removeClass('scroll-fade');
|
||||
}
|
||||
})
|
||||
})
|
||||
// /ScrollFade Anim
|
||||
// /ScrollFade Anim
|
||||
|
|
5
lib/js/popper.js
Normal file
5
lib/js/popper.js
Normal file
File diff suppressed because one or more lines are too long
61
podcast.html
Normal file
61
podcast.html
Normal file
|
@ -0,0 +1,61 @@
|
|||
---
|
||||
title : Podcast
|
||||
subhead : The LBRY Foundation Community Podcast🎙️.
|
||||
bg-image : "../img/foundation-podcast-background-art.png"
|
||||
layout : default
|
||||
permalink : /podcast/
|
||||
---
|
||||
|
||||
<!--main-row-->
|
||||
<div class="row">
|
||||
<!--main-column-->
|
||||
<div class="col-lg-10 col-xl-8 offset-sm-0 offset-md-0 offset-lg-1 offset-xl-2">
|
||||
|
||||
<!--row-->
|
||||
<div class="row">
|
||||
<!--episode-3-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="episode3">
|
||||
<h2 class="mb-2 text-white text-center">Episode 3</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="podcast">
|
||||
<iframe
|
||||
width="100%" height="100%"
|
||||
src="https://lbry.tv/$/embed/The-LBC-Rewards-Program/0eee1c82f903124590fe69efcac617b5da8dbb52"
|
||||
allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<!--/episode-3-->
|
||||
|
||||
<!--episode-2-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="episode2">
|
||||
<h2 class="mb-2 text-white text-center">Episode 2</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="podcast">
|
||||
<iframe
|
||||
width="100%" height="100%"
|
||||
src="https://lbry.tv/$/embed/Episode-2/f19f48547361c63bf820ad66fdc36c440b61ddff"
|
||||
allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<!--/episode-2-->
|
||||
|
||||
<!--episode-1-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="episode1">
|
||||
<h2 class="mb-2 text-white text-center">Episode 1</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="podcast">
|
||||
<iframe
|
||||
width="100%" height="100%"
|
||||
src="https://lbry.tv/$/embed/Episode-1/e7d93d772bd87e2b62d5ab993c1c3ced86ebb396"
|
||||
allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<!--/episode-1-->
|
||||
|
||||
</div>
|
||||
<!--row-->
|
||||
</div>
|
||||
<!--main-column-->
|
|
@ -1,185 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>LBRY Foundation - Podcast</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="shortcut icon" href="../img/small-logo.png" type="image/png">
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css">
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!-- CUSTOM CSS -->
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<link rel="stylesheet" href="../lib/css/article.css">
|
||||
<!-- /CUSTOM CSS -->
|
||||
</head>
|
||||
|
||||
<body id="podcast" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/tree/master/podcast" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<a class="nav-item nav-link" href="../branding/">Branding</a>
|
||||
<a class="nav-item nav-link" href="../tavern/">Tavern</a>
|
||||
<a class="nav-item nav-link" href="../swarm/">Swarm</a>
|
||||
<a class="nav-item nav-link" href="../governance/">Governance</a>
|
||||
<a class="nav-item nav-link" href="../chat/">Chat</a>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Podcast
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#podcast">Podcast<span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#episode3">Episode 3</a>
|
||||
<a class="dropdown-item" href="#episode2">Episode 2</a>
|
||||
<a class="dropdown-item" href="#episode1">Episode 1</a>
|
||||
</div>
|
||||
</li>
|
||||
<a class="nav-item nav-link" href="../roadmap/">Roadmap</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" id="global-parallax">
|
||||
<img src="../img/foundation-podcast-background-art.png" data-depth-factor="3" alt="bg-img" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img" />
|
||||
<div class="parallax-mask"></div>
|
||||
<div class="parallax-bg"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">Podcast</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">The LBRY Foundation Community Podcast.</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<!--article-container-->
|
||||
<div class="container-fluid above-parallax">
|
||||
<!--main-row-->
|
||||
<div class="row">
|
||||
<!--main-column-->
|
||||
<div class="col-lg-10 col-xl-8 offset-sm-0 offset-md-0 offset-lg-1 offset-xl-2">
|
||||
|
||||
<!--row-->
|
||||
<div class="row">
|
||||
<!--episode-3-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="episode3">
|
||||
<h2 class="mb-2 text-white text-center">Episode 3</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="podcast">
|
||||
<iframe
|
||||
width="100%" height="100%"
|
||||
src="https://lbry.tv/$/embed/The-LBC-Rewards-Program/0eee1c82f903124590fe69efcac617b5da8dbb52"
|
||||
allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<!--/episode-3-->
|
||||
|
||||
<!--episode-2-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="episode2">
|
||||
<h2 class="mb-2 text-white text-center">Episode 2</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="podcast">
|
||||
<iframe
|
||||
width="100%" height="100%"
|
||||
src="https://lbry.tv/$/embed/Episode-2/f19f48547361c63bf820ad66fdc36c440b61ddff"
|
||||
allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<!--/episode-2-->
|
||||
|
||||
<!--episode-1-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="episode1">
|
||||
<h2 class="mb-2 text-white text-center">Episode 1</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="podcast">
|
||||
<iframe
|
||||
width="100%" height="100%"
|
||||
src="https://lbry.tv/$/embed/Episode-1/e7d93d772bd87e2b62d5ab993c1c3ced86ebb396"
|
||||
allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<!--/episode-1-->
|
||||
|
||||
</div>
|
||||
<!--row-->
|
||||
</div>
|
||||
<!--main-column-->
|
||||
</div>
|
||||
<!--/main-row-->
|
||||
</div>
|
||||
<!--/article-container-->
|
||||
|
||||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
||||
|
||||
</div>
|
||||
<!-- /globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
</body>
|
||||
|
||||
</html>
|
64
roadmap.md
Normal file
64
roadmap.md
Normal file
|
@ -0,0 +1,64 @@
|
|||
---
|
||||
title : Roadmap
|
||||
subhead : The running wishlist and roadmap for the LBRY Foundation.
|
||||
bg-image : "../img/foundation-background-art.png"
|
||||
layout : default
|
||||
permalink : /roadmap/
|
||||
---
|
||||
|
||||
Hello again! It is my pleasure to present to you the running wishlist and roadmap for the LBRY Foundation. This is a fluid document that is meant to compile tasks that active contributors are working on or would like to see completed. If you think you can help with any of the tasks, feel free to join the community and help!
|
||||
|
||||
# Roadmap/Wishlist
|
||||
## Already Completed
|
||||
##### Restructure hive system
|
||||
- Simplified creation of hives
|
||||
- Simplified management of hives
|
||||
- Established foundations for future edges and growth
|
||||
|
||||
##### Establish community funding processes
|
||||
- Initiatives
|
||||
- Proposals
|
||||
|
||||
##### Establish organizational structures for the foundation
|
||||
- Established a board
|
||||
- Began official non-profit status process including by-laws
|
||||
- Reorganized Discord
|
||||
- Established initial processes
|
||||
- Meetings
|
||||
- Minutes
|
||||
- Monthly jam sessions
|
||||
- Document storage
|
||||
- Timely response to .fund requests
|
||||
- Timely response to initiative proposals
|
||||
|
||||
##### Establish outreach nodes
|
||||
|
||||
- LBRY Foundation channel
|
||||
- LBRY Foundation twitter
|
||||
- LBRY Mastodon
|
||||
|
||||
##### Establish Veterans node as a power wielding actor
|
||||
|
||||
- Decision maker for initiatives
|
||||
- Decision maker for addition of veterans
|
||||
|
||||
##### Grow Veterans node
|
||||
- Added 2 more active veterans
|
||||
|
||||
## Administrative Challenges
|
||||
- Process for LBRY Foundation channel management
|
||||
- Process for LBRY Twitter/Mastodon management
|
||||
- Complete Logo Assets and Upload to LBRY Channel
|
||||
- Board Elections
|
||||
- Continue edge organization
|
||||
|
||||
## Marketing and Outreach Challenges
|
||||
- Social Media Presence
|
||||
- Twitter
|
||||
- Facebook
|
||||
- LBRY Community Podcast
|
||||
- Intercommunity outreach initiatives
|
||||
- Reddit
|
||||
- AMAs
|
||||
- Establish partnerships
|
||||
- Establish LBRY Foundation Blog on LBRY Channel
|
|
@ -1,292 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>LBRY Foundation - Roadmap</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="shortcut icon" href="../img/small-logo.png" type="image/png">
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css">
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!-- CUSTOM CSS -->
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<link rel="stylesheet" href="../lib/css/article.css">
|
||||
<!-- /CUSTOM CSS -->
|
||||
</head>
|
||||
|
||||
<body id="roadmap" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/tree/master/roadmap" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<a class="nav-item nav-link" href="../branding/">Branding</a>
|
||||
<a class="nav-item nav-link" href="../tavern/">Tavern</a>
|
||||
<a class="nav-item nav-link" href="../swarm/">Swarm</a>
|
||||
<a class="nav-item nav-link" href="../governance/">Governance</a>
|
||||
<a class="nav-item nav-link" href="../chat/">Chat</a>
|
||||
<a class="nav-item nav-link" href="../podcast/">Podcast</a>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Roadmap
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#roadmap">Roadmap<span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#completed">Already Completed</a>
|
||||
<a class="dropdown-item" href="#administrative_challenges">Administrative Challenges</a>
|
||||
<a class="dropdown-item" href="#technical_challenges">Technical Challenges</a>
|
||||
<a class="dropdown-item" href="#marketing_challenges">Marketing and Outreach Challenges</a>
|
||||
</div>
|
||||
</li>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" id="global-parallax">
|
||||
<img src="../img/foundation-podcast-background-art.png" data-depth-factor="3" alt="bg-img" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img" />
|
||||
<div class="parallax-mask"></div>
|
||||
<div class="parallax-bg"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">Roadmap</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">The running wishlist and roadmap for the LBRY Foundation.</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<!--article-container-->
|
||||
<div class="container-fluid above-parallax">
|
||||
<!--main-row-->
|
||||
<div class="row">
|
||||
<!--main-column-->
|
||||
<div class="col-lg-10 col-xl-8 offset-sm-0 offset-md-0 offset-lg-1 offset-xl-2">
|
||||
<!--roadmap-accordion-->
|
||||
<div id="accordion">
|
||||
|
||||
<!--already-completed-->
|
||||
<div class="lbry-dark">
|
||||
<div class="card-header" id="completed">
|
||||
<h2 class="mb-0">
|
||||
<a class="btn btn-link" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
|
||||
Already Completed
|
||||
</a>
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
|
||||
<div class="card-body">
|
||||
<ul>
|
||||
<li>Restructure hive system</li>
|
||||
<ul>
|
||||
<li>Simplified creation of hives</li>
|
||||
<li>Simplified management of hives</li>
|
||||
<li>Established foundations for future edges and growth</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>Establish community funding processes</li>
|
||||
<ul>
|
||||
<li>Initiatives</li>
|
||||
<li>Proposals</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>Establish organizational structures for the foundation</li>
|
||||
<ul>
|
||||
<li>Established a board</li>
|
||||
<li>Began official non-profit status process including by-laws</li>
|
||||
<li>Reorganized Discord</li>
|
||||
<li>Established initial processes</li>
|
||||
<ul>
|
||||
<li>Meetings</li>
|
||||
<li>Minutes</li>
|
||||
<li>Monthly jam sessions</li>
|
||||
<li>Document storage</li>
|
||||
<li>Timely response to .fund requests</li>
|
||||
<li>Timely response to initiative proposals</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>Establish outreach nodes</li>
|
||||
<ul>
|
||||
<li>LBRY Foundation channel</li>
|
||||
<li>LBRY Foundation twitter</li>
|
||||
<li>LBRY Mastodon</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>Establish Veterans node as a power wielding actor</li>
|
||||
<ul>
|
||||
<li>Decision maker for initiatives</li>
|
||||
<li>Decision maker for addition of veterans</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li>Grow Veterans node</li>
|
||||
<ul>
|
||||
<li>Added 2 more active veterans</li>
|
||||
</ul>
|
||||
</ul>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/already-completed-->
|
||||
|
||||
<!--adminstrative-challenges-->
|
||||
<div class="lbry-dark">
|
||||
<div class="card-header" id="administrative_challenges">
|
||||
<h2 class="mb-0">
|
||||
<a class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
|
||||
Administrative Challenges
|
||||
</a>
|
||||
</h2>
|
||||
</div>
|
||||
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
|
||||
<div class="card-body">
|
||||
<ul>
|
||||
<li>Process for LBRY Foundation channel management</li>
|
||||
<li>Process for LBRY Twitter/Mastodon management</li>
|
||||
<li>Complete Logo Assets and Upload to LBRY Channel</li>
|
||||
<li>Board Elections</li>
|
||||
<li>Continue edge organization</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/adminstrative-challenges-->
|
||||
|
||||
<!--technical-challenges-->
|
||||
<div class="lbry-dark">
|
||||
<div class="card-header" id="technical_challenges">
|
||||
<h2 class="mb-0">
|
||||
<a class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
|
||||
Technical Challenges
|
||||
</a>
|
||||
</h2>
|
||||
</div>
|
||||
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
|
||||
<div class="card-body">
|
||||
<ul>
|
||||
<li>LBRY.org Website Redesign</li>
|
||||
<li>LBRY Foundation Curation Stream</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/technical-challenges-->
|
||||
|
||||
<!--marketing-challenges-->
|
||||
<div class="lbry-dark">
|
||||
<div class="card-header" id="marketing_challenges">
|
||||
<h2 class="mb-0">
|
||||
<a class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
|
||||
Marketing and Outreach Challenges
|
||||
</a>
|
||||
</h2>
|
||||
</div>
|
||||
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
|
||||
<div class="card-body">
|
||||
<ul>
|
||||
<li>Social Media Presence</li>
|
||||
<ul>
|
||||
<li>Twitter</li>
|
||||
<li>Facebook</li>
|
||||
</ul>
|
||||
<li>LBRY Community Podcast</li>
|
||||
<li>Intercommunity outreach initiatives</li>
|
||||
<ul>
|
||||
<li>Reddit</li>
|
||||
<li>AMAs</li>
|
||||
</ul>
|
||||
<li>Establish partnerships</li>
|
||||
<li>Establish LBRY Foundation Blog on LBRY Channel</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/marketing-challenges-->
|
||||
</div>
|
||||
<!--/roadmap-accordion-->
|
||||
</div>
|
||||
<!--/main-column-->
|
||||
</div>
|
||||
<!--/main-row-->
|
||||
</div>
|
||||
<!--/article-container-->
|
||||
|
||||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
||||
|
||||
</div>
|
||||
<!-- /globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
</body>
|
||||
|
||||
</html>
|
75
swarm.md
Normal file
75
swarm.md
Normal file
|
@ -0,0 +1,75 @@
|
|||
---
|
||||
title : The Swarm
|
||||
subhead : LBRY SWARM!🍯
|
||||
bg-image : "../img/foundation-swarm-background-art.png"
|
||||
layout : default
|
||||
permalink : /swarm/
|
||||
---
|
||||
|
||||
The swarm is a sub-network within the LBRY network. It utilizes open-source principles to focus on the development of community, engagement, and the voices and reputations of individuals and groups within the LBRY network.
|
||||
|
||||
The sub-net nodes are known as hives.
|
||||
|
||||
# What is a hive?
|
||||
|
||||
A hive is a place to meet people who love the things you love, including, of course, the LBRY protocol and the values it represents.
|
||||
|
||||
Anyone can make a hive, everyone can join as many hives as they’d like, and there can be more than one hive that center around the same topic or application.
|
||||
|
||||
Some examples of hives:
|
||||
|
||||
- Type some Markdown on the left
|
||||
- See HTML in the right
|
||||
- Magic
|
||||
|
||||
# New Features!
|
||||
|
||||
- Music
|
||||
- Country music
|
||||
- EDM
|
||||
- Anime
|
||||
- Art
|
||||
- Photography
|
||||
- The Ninja Turtles
|
||||
- Donatello, the staff wielding ninja turtle
|
||||
- The staff of Donatello, the staff wielding ninja turtle
|
||||
- Donatello’s graphic novel creation app
|
||||
- Really, anything!
|
||||
|
||||
You could think of hives as subreddits on Reddit, or channels on an IRC server, but different.
|
||||
|
||||
# Why should I join or make a hive?
|
||||
|
||||
Joining or making a hive is a great way to jump into the LBRY network.
|
||||
|
||||
Make some friends, learn some things, share some ideas, gain some experience, build a reputation, or just hang out with some like minded individuals.
|
||||
|
||||
# How do I join a hive?
|
||||
|
||||
Hives are entirely independent and autonomous communities within the larger LBRY network. As such, the process for joining a hive depends entirely on the hive you would like to join. Maybe a hive lets anyone join and all you need to do is join a chat room. In fact, many hives will have their own role and channel right on the LBRY discord server. To join one of those hives simply join the LBRY discord and ask for the appropriate role in the #hiveroles channel!
|
||||
|
||||
Otherwise, maybe a hive only lets folks with portfolios join, like photographers or artists. Maybe a hive requires you to write a short story to join. Maybe a hive requires a code contribution. Maybe a hive is entirely open. Maybe a hive has a limited number of possible members. So long as the rules of the hive do not conflict with the ethos and protocol of the LBRY network: maybe anything.
|
||||
|
||||
So how do you join? Find the hive you would like to join, find out how to join, and follow their instructions!
|
||||
|
||||
# How do I make a hive?
|
||||
|
||||
Making a hive is as easy as setting up a chat room and editing a wiki. Actually, that’s the entire process!
|
||||
|
||||
All you need to do to make your own hive is to set up a chat room or forum and add your hive to the hives table on this wiki page.
|
||||
|
||||
The easiest way to do this is to join the LBRY discord #makeahive channel and ask for you own hive role and channel. After a brief chat with a friendly moderator, you’ll have your own room and role made right on the LBRY discord. The LBRY discord is already a buzzing place so this is probably the best way to find more people for your new hive.
|
||||
|
||||
# How should hives operate?
|
||||
|
||||
However you want! Well, mostly.
|
||||
|
||||
We are all part of the LBRY network. The network’s ethos, its protocol, its operation, its community and development are paramount. The only written rule for hives is that a hive cannot conflict the LBRY network. Otherwise, literally anything goes.
|
||||
|
||||
So go ahead, make a democratic hive.
|
||||
Make an anarchist hive.
|
||||
Make a hive ruled by 12 rings.
|
||||
Make a hive ruled by 1.
|
||||
The LBRY network is your stage, your imagination is your player.
|
||||
Have fun. Experiment. Succeed. Fail. Try again. Fail again. Try again… again. Or don’t.
|
||||
The choices are yours to make.
|
994
swarm/index.html
994
swarm/index.html
|
@ -1,994 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>LBRY Foundation - Swarm</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="shortcut icon" href="../img/small-logo.png" type="image/png">
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css">
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM CSS-->
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<link rel="stylesheet" href="../lib/css/article.css">
|
||||
<!--/CUSTOM CSS-->
|
||||
</head>
|
||||
|
||||
<body id="swarm" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container ">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/tree/master/swarm" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<a class="nav-item nav-link" href="../branding/">Branding</a>
|
||||
<a class="nav-item nav-link" href="../tavern/">Tavern</a>
|
||||
<!-- <a class="nav-item nav-link active" href="#">Swarm <span class="sr-only">(current)</span></a> -->
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Swarm
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#swarm">Swarm<span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#hive">What is a hive?</a>
|
||||
<a class="dropdown-item" href="#why_hive">Why should I join or make a hive?</a>
|
||||
<a class="dropdown-item" href="#join_hive">How do I join a hive?</a>
|
||||
<a class="dropdown-item" href="#make_hive">How do I make a hive?</a>
|
||||
<a class="dropdown-item" href="#operate_hive">How should hives operate?</a>
|
||||
<a class="dropdown-item" href="#hives">Hives Table</a>
|
||||
</div>
|
||||
</li>
|
||||
<a class="nav-item nav-link" href="../governance/">Governance</a>
|
||||
<a class="nav-item nav-link" href="../chat/">Chat</a>
|
||||
<a class="nav-item nav-link" href="../podcast/">Podcast</a>
|
||||
<a class="nav-item nav-link" href="../roadmap/">Roadmap</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" data-depth-factor="3" id="global-parallax">
|
||||
<img src="../img/foundation-swarm-background-art.png" alt="bg-img" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img" />
|
||||
<div class="parallax-mask"></div>
|
||||
<div class="parallax-bg"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">The Swarm</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">LBRY SWARM!🍯</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<!--article-container-->
|
||||
<div class="container-fluid above-parallax">
|
||||
<!--main-row-->
|
||||
<div class="row">
|
||||
<!--main-column-->
|
||||
<div class="col-lg-10 col-xl-8 offset-sm-0 offset-md-0 offset-lg-1 offset-xl-2">
|
||||
<p>
|
||||
The swarm is a sub-network within the LBRY network.
|
||||
It utilizes open-source principles to focus on the development of community, engagement, and the voices and reputations of individuals and groups within the LBRY network.<br>
|
||||
The sub-net nodes are known as hives.
|
||||
</p>
|
||||
|
||||
<!--row-->
|
||||
<div class="row">
|
||||
<!--col-1-->
|
||||
<div class="col-md-12 col-lg-12 my-5">
|
||||
<h2 class="mb-2 text-white text-center" id="hive">What is a hive?</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>A hive is a place to meet people who love the things you love, including, of course, the LBRY protocol and the values it represents.</p>
|
||||
<p>Anyone can make a hive, everyone can join as many hives as they’d like, and there can be more than one hive that center around the same topic or application.</p>
|
||||
<p>Some examples of hives:</p>
|
||||
<ul>
|
||||
<li>Music</li>
|
||||
<li>Country music</li>
|
||||
<li>EDM</li>
|
||||
<li>Anime</li>
|
||||
<li>Art</li>
|
||||
<li>Photography</li>
|
||||
<li>The Ninja Turtles</li>
|
||||
<li>Donatello, the staff wielding ninja turtle</li>
|
||||
<li>The staff of Donatello, the staff wielding ninja turtle</li>
|
||||
<li>Donatello’s graphic novel creation app</li>
|
||||
<li>Really, anything!</li>
|
||||
</ul>
|
||||
<p>You could think of hives as subreddits on Reddit, or channels on an IRC server, but different.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-1-->
|
||||
|
||||
<!--col-2-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="why_hive">
|
||||
<h2 class="mb-2 text-white text-center">Why should I join or make a hive?</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>Joining or making a hive is a great way to jump into the LBRY network.</p>
|
||||
<p>Make some friends, learn some things, share some ideas, gain some experience, build a reputation, or just hang out with some like minded individuals.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-2-->
|
||||
|
||||
<!--col-3-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="join_hive">
|
||||
<h2 class="mb-2 text-white text-center">How do I join a hive?</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>Hives are entirely independent and autonomous communities within the larger LBRY network.
|
||||
As such, the process for joining a hive depends entirely on the hive you would like to join.
|
||||
Maybe a hive lets anyone join and all you need to do is join a chat room.
|
||||
In fact, many hives will have their own role and channel right on the LBRY discord server.
|
||||
To join one of those hives simply join the LBRY discord and ask for the appropriate role in the #hiveroles channel!</p>
|
||||
<p>Otherwise, maybe a hive only lets folks with portfolios join, like photographers or artists.
|
||||
Maybe a hive requires you to write a short story to join. Maybe a hive requires a code contribution.
|
||||
Maybe a hive is entirely open.
|
||||
Maybe a hive has a limited number of possible members.
|
||||
So long as the rules of the hive do not conflict with the ethos and protocol of the LBRY network: maybe anything.</p>
|
||||
<p>So how do you join? Find the hive you would like to join, find out how to join, and follow their instructions!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-3-->
|
||||
|
||||
<!--col-4-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="make_hive">
|
||||
<h2 class="mb-2 text-white text-center">How do I make a hive?</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>Making a hive is as easy as setting up a chat room and editing a wiki.
|
||||
Actually, that’s the entire process!</p>
|
||||
<p>All you need to do to make your own hive is to set up a chat room or forum and add your hive to the hives table on this wiki page.</p>
|
||||
<p>The easiest way to do this is to join the LBRY discord #makeahive channel and ask for you own hive role and channel.
|
||||
After a brief chat with a friendly moderator, you’ll have your own room and role made right on the LBRY discord.
|
||||
The LBRY discord is already a buzzing place so this is probably the best way to find more people for your new hive.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-4-->
|
||||
|
||||
<!--col-5-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="operate_hive">
|
||||
<h2 class="mb-2 text-white text-center">How should hives operate?</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>However you want! Well, mostly.</p>
|
||||
<p>We are all part of the LBRY network. The network’s ethos, its protocol, its operation, its community and development are paramount.
|
||||
The only written rule for hives is that a hive cannot conflict the LBRY network.
|
||||
Otherwise, literally anything goes.</p>
|
||||
<p>So go ahead, make a democratic hive. <br>
|
||||
Make an anarchist hive. <br>
|
||||
Make a hive ruled by 12 rings. <br>
|
||||
Make a hive ruled by 1. <br>
|
||||
The LBRY network is your stage, your imagination is your player. <br>
|
||||
Have fun. Experiment. Succeed. Fail. Try again. Fail again. Try again… again. Or don’t. <br>
|
||||
The choices are yours to make.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-5-->
|
||||
|
||||
<!--col-6-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="hives">
|
||||
<h2 class="mb-2 text-white text-center">Hives Table</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="lbry-dark text-center pt-3">
|
||||
<span class="mt-3">Click on a hive to see details</span>
|
||||
<div class="card-body">
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#developersModal">
|
||||
Developers
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#contributorsModal">
|
||||
Contributors
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#creatorsModal">
|
||||
Creators
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#translatorsModal">
|
||||
Translators
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRY_ScienceModal">
|
||||
LBRY.Science
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRY_EspanolModal">
|
||||
LBRY.Español
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRY_recordsModal">
|
||||
LBRY.records
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#Open_Source_LBRYModal">
|
||||
Open Source LBRY
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#Watch_on_LBRY_PluginModal">
|
||||
Watch on LBRY Plugin
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#Wallet_ServersModal">
|
||||
Wallet Servers
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#RedditModal">
|
||||
Reddit
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LazyBitModal">
|
||||
LazyBit
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRY_IndiaModal">
|
||||
LBRY India
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#Makerspace_HiveModal">
|
||||
Makerspace Hive
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRY_SocialModal">
|
||||
LBRY Social
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRY_TurkeyModal">
|
||||
LBRY Turkey
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRY_CommunityModal">
|
||||
LBRY Community (LBRYC)
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#Beat_SaberModal">
|
||||
Beat Saber
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRYans_UnitedModal">
|
||||
LBRYans United
|
||||
</button>
|
||||
<button type="button" class="btn lbry-dark-green mb-3 mr-3" data-toggle="modal" data-target="#LBRYian_comModal">
|
||||
LBRYian.com
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-6-->
|
||||
|
||||
</div>
|
||||
<!--/row-->
|
||||
</div>
|
||||
<!--/main-column-->
|
||||
</div>
|
||||
<!--/main-row-->
|
||||
</div>
|
||||
<!--/article-container-->
|
||||
|
||||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
||||
|
||||
</div>
|
||||
<!-- globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- Modals -->
|
||||
<!-- Developers -->
|
||||
<div class="modal fade" id="developersModal" tabindex="-1" role="dialog" aria-labelledby="developersModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="developersModal">LBRY Community (LBRYC) </h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Developer role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
The LBRY Foundation's developer hive.
|
||||
Chat with other software engineers and developers.
|
||||
Talk about LBRY or other development projects.
|
||||
Learn and explore the world of code!
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Developers -->
|
||||
|
||||
<!-- Contributors -->
|
||||
<div class="modal fade" id="contributorsModal" tabindex="-1" role="dialog" aria-labelledby="contributorsModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="contributorsModal">Contributors</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Contributor role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
The LBRY Foundation's contributors hive.
|
||||
Chat with other contributors.
|
||||
Talk about building LBRY design, marketing, outreach, organization, translation,
|
||||
or any form of contribution other than software engineering.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Contributors -->
|
||||
|
||||
<!-- Creators -->
|
||||
<div class="modal fade" id="creatorsModal" tabindex="-1" role="dialog" aria-labelledby="creatorsModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="creatorsModal">Creators</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Creator role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
The LBRY Foundation's creators hive.
|
||||
Chat with other creators on the LBRY platform or where ever! Talk about gear, technique, struggles, successes.
|
||||
Share ideas and content, and get to know one another!
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Creators -->
|
||||
|
||||
<!-- Translators -->
|
||||
<div class="modal fade" id="translatorsModal" tabindex="-1" role="dialog" aria-labelledby="translatorsModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="translatorsModal">Translators</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Translator role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
The LBRY Foundation's translation hive.
|
||||
Chat with other translators.
|
||||
Help translate LBRY and LBRY documentation to languages from around the world!
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Translators -->
|
||||
|
||||
<!-- LBRY.Science -->
|
||||
<div class="modal fade" id="LBRY_ScienceModal" tabindex="-1" role="dialog" aria-labelledby="LBRY_ScienceModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRY_ScienceModal">LBRY.Science</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Science role</p>
|
||||
|
||||
<h4>Website</h4>
|
||||
<p><a href="http://lbry.science/">http://lbry.science/</a></p>
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
LBRY.Science focuses on the curation of science news,
|
||||
the creation and curation of science content,
|
||||
the spread of science literacy, communication,
|
||||
and education, and the advancement of DeSci: A Decentralized System of Science.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRY.Science -->
|
||||
|
||||
<!-- LBRY.Español -->
|
||||
<div class="modal fade" id="LBRY_EspanolModal" tabindex="-1" role="dialog" aria-labelledby="LBRY_EspanolModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRY_EspanolModal">LBRY.Español</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Espanol role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
Canal en español del protocolo LBRY para toda la comunidad.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRY.Español -->
|
||||
|
||||
<!-- LBRY.records -->
|
||||
<div class="modal fade" id="LBRY_recordsModal" tabindex="-1" role="dialog" aria-labelledby="LBRY_recordsModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRY_recordsModal">LBRY.records</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Musician role</p>
|
||||
|
||||
<h4>Website</h4>
|
||||
<p><a href="https://bitrophone.com/">https://bitrophone.com/</a></p>
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
LBRY.Records plans to be a music distribution company & online label in future,
|
||||
that distributes your music to all platforms such as Spotify, iTunes, Deezer, YouTube
|
||||
and makes musicians earn more money by utilising cryptocurrencies on an official LBRY.Records LBRY channel.
|
||||
It is also a musician community.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRY.records -->
|
||||
|
||||
<!-- Open Source LBRY -->
|
||||
<div class="modal fade" id="Open_Source_LBRYModal" tabindex="-1" role="dialog" aria-labelledby="Open_Source_LBRYModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="Open_Source_LBRYModal">Open Source LBRY</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !OpenSource role </p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
Open Source LBRY's focus is to bring open sourced content to LBRY.
|
||||
We have already uploaded over 50k public domain books and have created the MassUploader program
|
||||
so that anybody that has many open source/public domain files have an easy method to publish them all to LBRY.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Open Source LBRY -->
|
||||
|
||||
<!-- Watch on LBRY Plugin -->
|
||||
<div class="modal fade" id="Watch_on_LBRY_PluginModal" tabindex="-1" role="dialog" aria-labelledby="Watch_on_LBRY_PluginModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="Watch_on_LBRY_PluginModal">Watch on LBRY Plugin</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !WatchonLBRY role</p>
|
||||
|
||||
<h4>Website</h4>
|
||||
<p><a href="https://github.com/kodxana/Watch-on-LBRY">https://github.com/kodxana/Watch-on-LBRY</a></p>
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
A plugin for web browsers that automatically checks whether a YouTube video or channel is on LBRY.
|
||||
If it is, it redirects you to LBRY to watch it there.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Watch on LBRY Plugin -->
|
||||
|
||||
<!-- Wallet Servers -->
|
||||
<div class="modal fade" id="Wallet_ServersModal" tabindex="-1" role="dialog" aria-labelledby="Wallet_ServersModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="Wallet_ServersModal">Wallet Servers</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !WalletServer role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
A wallet server is a computer that processes information from the blockchain and
|
||||
arranges it into a more convenient form for apps to use.
|
||||
Your LBRY app talks to wallet servers when it wants to find out information about LBRY content,
|
||||
make transactions, and many other things. <br>
|
||||
|
||||
A community member may wish to run his or her own wallet server in order to reduce reliance on LBRY Inc
|
||||
(thus making the network more decentralized),
|
||||
to customize what content is available to users
|
||||
(e.g., certain content might be illegal in one country but not another),
|
||||
in order to run a different trending algorithm, or for some other reason not listed here. <br>
|
||||
|
||||
This hive talks about and builds these things.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Wallet Servers -->
|
||||
|
||||
<!-- Reddit -->
|
||||
<div class="modal fade" id="RedditModal" tabindex="-1" role="dialog" aria-labelledby="RedditModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="RedditModal">Reddit</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !Reddit role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
The place for people who use Reddit and LBRY.
|
||||
Join if you want to spread LBRY among Redditors,
|
||||
talk about the Reddit tipbot or other integrations,
|
||||
or just lament the slow death of a once totally sweet site.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Reddit -->
|
||||
|
||||
<!-- LazyBit -->
|
||||
<div class="modal fade" id="LazyBitModal" tabindex="-1" role="dialog" aria-labelledby="LazyBitModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LazyBitModal">LazyBit</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !LazyBit role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
We work towards raising the level of knowledge about LBRY,
|
||||
cryptocurrency and distributed technologies in geographic area of ex-Yugoslavia/Balkans/Adriatic region.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LazyBit -->
|
||||
|
||||
<!-- LBRY India -->
|
||||
<div class="modal fade" id="LBRY_IndiaModal" tabindex="-1" role="dialog" aria-labelledby="LBRY_IndiaModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRY_IndiaModal">LBRY India</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !India role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
LBRY India is a community for LBRYians accros India and Africa.
|
||||
We are the full supporters of LBRY, secure, open, and community-run digital marketplace
|
||||
to enjoy the latest content from your favorite creators as a user, not a product. <br>
|
||||
The LBRY India community is made up of people from various educational and cultural backgrounds.
|
||||
You can get to learn new things and get to meet new people.
|
||||
Probably make some new friends. We usually organise LBRY, blockchain, and cryptocurrency meetups.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRY India -->
|
||||
|
||||
<!-- Makerspace Hive -->
|
||||
<div class="modal fade" id="Makerspace_HiveModal" tabindex="-1" role="dialog" aria-labelledby="Makerspace_HiveModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="Makerspace_HiveModal">Makerspace Hive</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p>LBRY Discord !MakerspaceHive role</p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
Makerspacehive is promoting LBRY as a content distribution platform
|
||||
for makers and DIY creators with special focus on Makerspaces.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Makerspace Hive -->
|
||||
|
||||
<!-- LBRY Social -->
|
||||
<div class="modal fade" id="LBRY_SocialModal" tabindex="-1" role="dialog" aria-labelledby="LBRY_SocialModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRY_SocialModal">LBRY Social</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p><a href="https://join.lbry.social/">https://join.lbry.social/</a></p>
|
||||
|
||||
<h4>Website</h4>
|
||||
<p><a href="https://lbry.social/">https://lbry.social/</a></p>
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
LBRY Social is an online LBRY community building, marketing and growth engine with a twist.
|
||||
We are an ecosystem of LBRYnauts looking to learn, discover and
|
||||
build networks to power LBRY community blockchain projects of all shapes and sizes.
|
||||
Power to the people!
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRY Social -->
|
||||
|
||||
<!-- LBRY Turkey -->
|
||||
<div class="modal fade" id="LBRY_TurkeyModal" tabindex="-1" role="dialog" aria-labelledby="LBRY_TurkeyModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRY_TurkeyModal">LBRY Turkey</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p><a href="https://discord.gg/Np22tJw">https://discord.gg/Np22tJw</a></p>
|
||||
|
||||
<h4>Website</h4>
|
||||
<p><a href="http://www.lbryturkey.com/">http://www.lbryturkey.com/</a></p>
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
LBRY.Turkey / LBRY Türkiye, Türkiye'de LBRY kullanıcılarının oluşturduğu bir topluluktur.
|
||||
Bu topluluğa katılıp diğer Türk LBRY kullanıcıları ile tanışabilir,
|
||||
ara ara düzenlenen LBC ve Swag çekilişlerine katılabilir,
|
||||
içeriklerin tadını beraber çıkarabilirsin.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRY Turkey -->
|
||||
|
||||
<!-- LBRY Community (LBRYC) -->
|
||||
<div class="modal fade" id="LBRY_CommunityModal" tabindex="-1" role="dialog" aria-labelledby="LBRY_CommunityModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRY_CommunityModal">LBRY Community (LBRYC) </h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p><a href="https://invite.lbry.community">https://invite.lbry.community</a></p>
|
||||
|
||||
<h4>Website</h4>
|
||||
<p><a href="https://lbry.community">https://lbry.community</a></p>
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
The LBRY.Community hive is dedicated to bringing attention to the LBRY protocol and
|
||||
applications built on the LBRY protocol alongside showing our support and love for open source projects. <br>
|
||||
Our goal is to promote and aid in the acknowledgement of projects built on the LBRY protocol
|
||||
and similar open source projects.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRY Community (LBRYC) -->
|
||||
|
||||
<!-- Beat Saber -->
|
||||
<div class="modal fade" id="Beat_SaberModal" tabindex="-1" role="dialog" aria-labelledby="Beat_SaberModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="Beat_SaberModal">Beat Saber</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p><a href="https://discord.gg/qQDgacC">https://discord.gg/qQDgacC</a></p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
Beat Saber is a rhythmic video game where you hit notes to the beat in a VR experience.
|
||||
LBRY Beat Saber is all about hanging out! Share everything you enjoy about Beat Saber,
|
||||
chat about your favorite map, or anything related! <br>
|
||||
The main mission we'd like to do is:
|
||||
to share to everyone in the beat saber community that LBRY can really help you with the content you make,
|
||||
even if you play a song that may be copywritten!
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /Beat Saber -->
|
||||
|
||||
<!-- LBRYans United -->
|
||||
<div class="modal fade" id="LBRYans_UnitedModal" tabindex="-1" role="dialog" aria-labelledby="LBRYans_UnitedModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRYans_UnitedModal">LBRYans United</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p><a href="https://mewe.com/join/lbryansunited">https://mewe.com/join/lbryansunited</a></p>
|
||||
|
||||
<!-- <h4>Website</h4>
|
||||
<p></p> -->
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
This hive represents the "LBRYans United" MeWe Group,
|
||||
which serves to help inform/educate/connect with folks who may not have ever heard of LBRY. <br>
|
||||
A place for new/old LBRY users ("LBRYans" when spelled properly) to share/view/discuss their work.
|
||||
We also focus heavily on the more broad crypto world as well as alternative FOSS based platforms & programs.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRYans United -->
|
||||
|
||||
<!-- LBRYian.com -->
|
||||
<div class="modal fade" id="LBRYian_comModal" tabindex="-1" role="dialog" aria-labelledby="LBRYian_comModal" aria-hidden="true">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content lbry-dark text-white">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="LBRYian_comModal">LBRYian.com</h3>
|
||||
<button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4>Chat Room or Forum</h4>
|
||||
<p><a href="https://discord.gg/cqNDrm9">https://discord.gg/cqNDrm9</a></p>
|
||||
|
||||
<h4>Website</h4>
|
||||
<p><a href="https://lbryian.com/">https://lbryian.com/</a></p>
|
||||
|
||||
<h4>Description</h4>
|
||||
<p>
|
||||
LBRYian.com is building Social Media Network among students to promote LBRY technology
|
||||
and spreading awareness about how LBRY can help to protect our privacy, and freedom
|
||||
of our content by doing meetups and making meaningful memes that describe LBRY in fun way. <br>
|
||||
Our Main Focus is to trend #lbryian in social media by our memes and meetups.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn lbry-dark-green" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /LBRYian.com -->
|
||||
<!-- Modals -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
</body>
|
||||
|
||||
</html>
|
83
tavern.md
Normal file
83
tavern.md
Normal file
|
@ -0,0 +1,83 @@
|
|||
---
|
||||
title : The Tavern
|
||||
subhead : The LBRY Tavern. Cheers!🍺
|
||||
bg-image : "../img/foundation-tavern-background-art.png"
|
||||
layout : default
|
||||
permalink : /tavern/
|
||||
---
|
||||
|
||||
So you have an idea you want to bring into the LBRY network. You have fleshed out the details and determined its value if it succeeds.
|
||||
You know what needs to get done in what order and how you will track completion of your goals... if only you had the resources and help to
|
||||
get it rolling!
|
||||
|
||||
# Welcome to The LBRY Tavern
|
||||
|
||||
Where the LBRY Foundation and community gather to turn thoughts into things.
|
||||
|
||||
The LBRY Foundation uses its resources to support the LBRY network, community, and ecosystem.
|
||||
If you have an idea that will do just that, we want to help if we can. If we can’t help, maybe a hive or someone from the community can.
|
||||
|
||||
There are three things to remember if you want to get the most out of the Tavern:
|
||||
|
||||
- Start small
|
||||
- Starting is easy, completing is not
|
||||
- Reputation is key
|
||||
|
||||
There are two avenues you can use to secure the help you need to build your idea: Initiatives and Project Grants.
|
||||
|
||||
# Initiatives
|
||||
|
||||
Initiatives are small tasks or projects. An initiative is a great way to experiment or explore the development of an idea, or to support a smaller ongoing project.
|
||||
|
||||
Most funding requests should exist as initiatives and initiatives are the perfect way to step into the LBRY developer and contributor ecosystem.
|
||||
|
||||
There are three tiers of funding for initiatives. Each tier has a maximum amount of LBC that can be requested:
|
||||
|
||||
- Tier 1 : 200 USD
|
||||
|
||||
- Tier 2 : 400 USD
|
||||
|
||||
- Tier 3 : 800 USD
|
||||
|
||||
You must complete one initiative of a lower tier before you can request funding from a higher tier. In other words, complete a task with 200 USD in order to ask for 400 USD, and complete a task with 10,000 LBC in order to ask for 800 USD.
|
||||
|
||||
The amount requested will be converted to LBC based on the 30 day moving average price of LBC on the Bittrex exchange.
|
||||
|
||||
To request funding for your initiative follow these steps:
|
||||
|
||||
1. Join the LBRY Discord server
|
||||
2. Give yourself a role in the #hiveroles channel
|
||||
3. Introduce yourself in the #initiative-discussions channel
|
||||
4. In under 2000 characters, describe your initiative in the #initiative-proposals channel
|
||||
5. Be sure to include an LBC address in your proposal
|
||||
|
||||
To give your proposal a better chance of success, try to answer these questions:
|
||||
|
||||
- What specific outcomes happen as a result of the funding?
|
||||
- How do these outcomes bring value to the LBRY network?
|
||||
- How can success be measured?
|
||||
- How long will the project take?
|
||||
- How long will the funding last?
|
||||
|
||||
# NOTE:
|
||||
|
||||
- Keep all discussion to the #initiative-discussions channel
|
||||
- No single person can receive more than 800 USD per month via initiatives.
|
||||
|
||||
Once you have shared your idea in the #initiative-proposals channel, people might ask questions in the #initiative-discussions channel.
|
||||
|
||||
Do your best to answer them, and do not take criticism personally! We all want LBRY to succeed.
|
||||
|
||||
If your proposal is rejected, rethink it and try again.
|
||||
|
||||
The requested LBC amount will be sent to the provided LBC address within 48 hours of the 24 hour period having passed.
|
||||
|
||||
# Project Grants
|
||||
|
||||
Projects are long term and large scale initiatives. There is no limit to the amount of LBC that can be requested with a project grant.
|
||||
|
||||
Project grants should be fully detailed proposals with a clear vision, measurable goals, completion dates, and a value proposition.
|
||||
|
||||
Projects that are supported by an extensive reputation and the experience from a “prototype” are much more likely to be given serious consideration. For the time being, project grants are reviewed by the Foundation Board every Tuesday. Responses are sent out within 48 hours of their review.
|
||||
|
||||
To apply for a project grant, visit https://lbry.fund and submit a completed form.
|
|
@ -1,264 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>LBRY Foundation - Tavern</title>
|
||||
|
||||
<!--TitleBar Icon-->
|
||||
<link rel="shortcut icon" href="../img/small-logo.png" type="image/png">
|
||||
|
||||
<!-- CSS DEPENDENCIES -->
|
||||
<link rel="stylesheet" href="../lib/bootstrap/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../lib/fontawesome/css/all.min.css">
|
||||
<!-- /CSS DEPENDENCIES -->
|
||||
|
||||
<!-- CUSTOM CSS -->
|
||||
<link rel="stylesheet" href="../lib/css/index.css">
|
||||
<link rel="stylesheet" href="../lib/css/article.css">
|
||||
<!-- /CUSTOM CSS -->
|
||||
</head>
|
||||
|
||||
<body id="tavern" data-spy="scroll" data-target=".navbar" data-offset="100">
|
||||
<!-- navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark lbry-dark nav-transparent fixed-top">
|
||||
<div class="container">
|
||||
<span class="navbar-brand order-1 mr-0"><a href="https://github.com/LBRYians/lbry-org-new/tree/master/tavern" target="_blank" style="color: #FFFFFF;"><i class="fab fa-github"></i></a></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="../">
|
||||
<img src="../img/logo.png" alt="lbry-foundation-logo">
|
||||
</a>
|
||||
<div class="collapse navbar-collapse navbar-dark" id="navbarNavAltMarkup">
|
||||
<div class="navbar-nav">
|
||||
<a class="nav-item nav-link" href="../">Home</a>
|
||||
<a class="nav-item nav-link" href="../branding/">Branding</a>
|
||||
<!-- <a class="nav-item nav-link active" href="#">Tavern <span class="sr-only">(current)</span></a> -->
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Tavern
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#tavern">Tavern<span class="sr-only">(current)</span></a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#lbry_tavern">Welcome to The LBRY Tavern</a>
|
||||
<a class="dropdown-item" href="#initiatives">Initiatives</a>
|
||||
<a class="dropdown-item" href="#project_grants">Project Grants</a>
|
||||
</div>
|
||||
</li>
|
||||
<a class="nav-item nav-link" href="../swarm/">Swarm</a>
|
||||
<a class="nav-item nav-link" href="../governance/">Governance</a>
|
||||
<a class="nav-item nav-link" href="../chat/">Chat</a>
|
||||
<a class="nav-item nav-link" href="../podcast/">Podcast</a>
|
||||
<a class="nav-item nav-link" href="../roadmap/">Roadmap</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- /navbar -->
|
||||
|
||||
<!-- globalParallax -->
|
||||
<div class="parallax" id="global-parallax">
|
||||
<img src="../img/foundation-tavern-background-art.png" data-depth-factor="3" alt="bg-img" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img" />
|
||||
<div class="parallax-mask"></div>
|
||||
<div class="parallax-bg"></div>
|
||||
|
||||
<!-- globalParallaxContent -->
|
||||
<div class="parallax-content">
|
||||
<!-- jumbotron -->
|
||||
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;" id="#tavern">
|
||||
<div class="container text-sm-center pt-5">
|
||||
<center><h1 class="display-4" Ideas style="font-weight: bold;">The Tavern</h1></center>
|
||||
<hr class="heading">
|
||||
<center><p class="lead">The LBRY Tavern. Cheers!🍺</p></center>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /jumbotron -->
|
||||
|
||||
<!--article-container-->
|
||||
<div class="container-fluid above-parallax">
|
||||
<!--main-row-->
|
||||
<div class="row">
|
||||
<!--main-column-->
|
||||
<div class="col-lg-10 col-xl-8 offset-sm-0 offset-md-0 offset-lg-1 offset-xl-2">
|
||||
<p>
|
||||
So you have an idea you want to bring into the LBRY network. You have fleshed out the details and determined its value if it succeeds. <br>You know what needs to get done in what order and how you will track completion of your
|
||||
goals... if only you had the resources and help to <br>
|
||||
get it rolling!
|
||||
</p>
|
||||
|
||||
<!--row-->
|
||||
<div class="row">
|
||||
<!--col-1-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="lbry_tavern">
|
||||
<h2 class="mb-2 text-white text-center">Welcome to The LBRY Tavern</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>Where the LBRY Foundation and community gather to turn thoughts into things.</p>
|
||||
<p>The LBRY Foundation uses its resources to support the LBRY network, community, and ecosystem. <br>
|
||||
If you have an idea that will do just that,
|
||||
we want to help if we can. If we can’t help, maybe a hive or someone from the community can.</p>
|
||||
<p>There are three things to remember if you want to get the most out of the Tavern:</p>
|
||||
<ol>
|
||||
<li>Start small</li>
|
||||
<li>Starting is easy, completing is not</li>
|
||||
<li>Reputation is key</li>
|
||||
</ol>
|
||||
<p>There are two avenues you can use to secure the help you need to build your idea:
|
||||
<strong><a href="#initiatives">Initiatives</a></strong> and
|
||||
<strong><a href="#project_grants">Project Grants</a></strong>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-1-->
|
||||
|
||||
<!--col-2-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="initiatives">
|
||||
<h2 class="mb-2 text-white text-center">Initiatives</h2>
|
||||
<hr class="subhead">
|
||||
<br><br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>Initiatives are small tasks or projects.
|
||||
An initiative is a great way to experiment or explore the development of an idea,
|
||||
or to support a smaller ongoing project. </p>
|
||||
<p>Most funding requests should exist as initiatives
|
||||
and initiatives are the perfect way to step into the LBRY developer and contributor ecosystem.</p>
|
||||
|
||||
<p>There are three tiers of funding for initiatives.
|
||||
Each tier has a maximum amount of LBC that can be requested:</p>
|
||||
<p>Tier 1 : 200 USD</p>
|
||||
<p>Tier 2 : 400 USD</p>
|
||||
<p>Tier 3 : 800 USD</p>
|
||||
|
||||
<p>You must complete one initiative of a lower tier before you can request funding from a higher tier.
|
||||
In other words, complete a task with 200 USD in order to ask for 400 USD,
|
||||
and complete a task with 10,000 LBC in order to ask for 800 USD.
|
||||
</p>
|
||||
<p>The amount requested will be converted to LBC
|
||||
based on the 30 day moving average price of LBC on the Bittrex exchange.</p>
|
||||
|
||||
<p>To request funding for your initiative follow these steps:</p>
|
||||
<ol>
|
||||
<li>Join the LBRY Discord server</li>
|
||||
<li>Give yourself a role in the #hiveroles channel</li>
|
||||
<li>Introduce yourself in the #initiative-discussions channel</li>
|
||||
<li>In under 2000 characters, describe your initiative in the #initiative-proposals channel</li>
|
||||
<li>Be sure to include an LBC address in your proposal</li>
|
||||
</ol>
|
||||
|
||||
<p>To give your proposal a better chance of success, try to answer these questions:</p>
|
||||
<ul>
|
||||
<li>What specific outcomes happen as a result of the funding?</li>
|
||||
<li>How do these outcomes bring value to the LBRY network?</li>
|
||||
<li>How can success be measured?</li>
|
||||
<li>How long will the project take?</li>
|
||||
<li>How long will the funding last?</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>NOTE:</strong></p>
|
||||
<ul>
|
||||
<li>Keep all discussion to the #initiative-discussions channel</li>
|
||||
<li>No single person can receive more than 800 USD per month via initiatives.</li>
|
||||
</ul>
|
||||
|
||||
<p>Once you have shared your idea in the #initiative-proposals channel,
|
||||
people might ask questions in the #initiative-discussions channel.</p>
|
||||
|
||||
<p>Do your best to answer them, and do not take criticism personally! We all want LBRY to succeed. </p>
|
||||
<p>If your proposal is rejected, rethink it and try again.</p>
|
||||
<!-- <p><strong>Voting:</strong></p>
|
||||
<ul>
|
||||
<li></li>
|
||||
</ul> -->
|
||||
<p>The requested LBC amount will be sent to the provided LBC address
|
||||
within 48 hours of the 24 hour period having passed.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-2-->
|
||||
|
||||
<!--col-3-->
|
||||
<div class="col-md-12 col-lg-12 my-5" id="project_grants">
|
||||
<h2 class="mb-2 text-white text-center">Project Grants</h2>
|
||||
<hr class="subhead">
|
||||
<br>
|
||||
<div class="card lbry-dark">
|
||||
<div class="card-body">
|
||||
<p>Projects are long term and large scale initiatives.
|
||||
There is no limit to the amount of LBC that can be requested with a project grant. </p>
|
||||
|
||||
<p>Project grants should be fully detailed proposals with a clear vision,
|
||||
measurable goals, completion dates, and a value proposition.</p>
|
||||
<p>Projects that are supported by an extensive reputation and the experience from a “prototype”
|
||||
are much more likely to be given serious consideration.
|
||||
For the time being, project grants are reviewed by the Foundation Board every Tuesday.
|
||||
Responses are sent out within 48 hours of their review.</p>
|
||||
|
||||
<p>To apply for a project grant, visit <a href="https://lbry.fund">https://lbry.fund</a> and submit a completed form.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--/col-3-->
|
||||
</div>
|
||||
<!--row-->
|
||||
</div>
|
||||
<!--main-column-->
|
||||
</div>
|
||||
<!--/main-row-->
|
||||
</div>
|
||||
<!--/article-container-->
|
||||
|
||||
<!-- footer -->
|
||||
<div class="container-fluid above-parallax">
|
||||
<div class="row py-3">
|
||||
<div class="col-md-7">
|
||||
<ul class="nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://lbry.com/privacypolicy">Privacy Policy</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<div class="btn-group dropup">
|
||||
<button type="button" class="btn btn-outline-secondary text-white">Other Sites</button>
|
||||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="https://lbry.com">LBRY.com</a>
|
||||
<a class="dropdown-item" href="https://lbry.tech">LBRY.tech</a>
|
||||
<a class="dropdown-item" href="https://lbry.fund">LBRY.fund</a>
|
||||
<a class="dropdown-item" href="https://lbry.tv">LBRY.tv</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md text-md-right">
|
||||
<small>© 2020 LBRY.org | LBRY Foundation</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /footer -->
|
||||
|
||||
</div>
|
||||
<!-- /globalParallaxContent -->
|
||||
</div>
|
||||
<!-- /globalParallax -->
|
||||
|
||||
<!-- JS DEPENDENCIES -->
|
||||
<script src="../lib/jquery/jquery-3.5.1.min.js" defer></script>
|
||||
<script src="../lib/bootstrap/js/bootstrap.bundle.min.js" defer></script>
|
||||
<!-- /JS DEPENDENCIES -->
|
||||
|
||||
<!--CUSTOM JS-->
|
||||
<script src="../lib/js/index.js" defer></script>
|
||||
<!--/CUSTOM JS-->
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Reference in a new issue