-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add 'Earn Bitcoin' section #4607
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
refined-element
wants to merge
2
commits into
bitcoin-dot-org:master
Choose a base branch
from
refined-element:add-earn-section
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+112
−0
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| --- | ||
| # This file is licensed under the MIT License (MIT) available on | ||
| # http://opensource.org/licenses/MIT. | ||
|
|
||
| layout: base | ||
| id: earn | ||
| --- | ||
|
|
||
| <div class="hero"> | ||
| <div class="container hero-container"> | ||
| <h1>{% translate pagetitle %}</h1> | ||
| <p class="summary">{% translate pagedesc %}</p> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="container"> | ||
| <div class="row card-row"> | ||
| <div class="card support-card"> | ||
| <h2 id="freelancing">{% translate freelancing %}</h2> | ||
| <p>{% translate freelancingtext %}</p> | ||
| <ul> | ||
| <li><a href="https://microlancer.io/">Microlancer</a> - {% translate microlancerdesc %}</li> | ||
| <li><a href="https://stacker.news/">Stacker News</a> - {% translate stackernewsdesc %}</li> | ||
| <li><a href="https://www.reddit.com/r/Jobs4Bitcoins/">Jobs4Bitcoins</a> - {% translate jobs4bitcoinsdesc %}</li> | ||
| </ul> | ||
| </div> | ||
|
|
||
| <div class="card support-card"> | ||
| <h2 id="content">{% translate content %}</h2> | ||
| <p>{% translate contenttext %}</p> | ||
| <ul> | ||
| <li><a href="https://fountain.fm/">Fountain</a> - {% translate fountaindesc %}</li> | ||
| <li><a href="https://www.publish0x.com/">Publish0x</a> - {% translate publish0xdesc %}</li> | ||
| </ul> | ||
| </div> | ||
|
|
||
| <div class="card support-card"> | ||
| <h2 id="bounties">{% translate bounties %}</h2> | ||
| <p>{% translate bountiestext %}</p> | ||
| <ul> | ||
| <li><a href="https://www.lightningbounties.com/">Lightning Bounties</a> - {% translate lightningbountiesdesc %}</li> | ||
| <li><a href="https://bitcoinbounties.org/">Bitcoin Bounties</a> - {% translate bitcoinbountiesdesc %}</li> | ||
| <li><a href="https://github.com/bitcoin-dot-org/bitcoin.org#earn-bitcoin-for-contributing">Bitcoin.org</a> - {% translate bitcoinorgdesc %}</li> | ||
| </ul> | ||
| </div> | ||
|
|
||
| <div class="card support-card"> | ||
| <h2 id="mining">{% translate mining %}</h2> | ||
| <p>{% translate miningtext %}</p> | ||
| <ul> | ||
| <li><a href="https://ocean.xyz/">OCEAN</a> - {% translate oceandesc %}</li> | ||
| <li><a href="https://www.nicehash.com/">NiceHash</a> - {% translate nicehashdesc %}</li> | ||
| </ul> | ||
| </div> | ||
|
|
||
| <div class="card support-card"> | ||
| <h2 id="rewards">{% translate rewards %}</h2> | ||
| <p>{% translate rewardstext %}</p> | ||
| <ul> | ||
| <li><a href="https://foldapp.com/">Fold</a> - {% translate folddesc %}</li> | ||
| <li><a href="https://www.lolli.com/">Lolli</a> - {% translate lollidesc %}</li> | ||
| </ul> | ||
| </div> | ||
|
|
||
| <div class="card support-card"> | ||
| <h2 id="important">{% translate important %}</h2> | ||
| <p>{% translate importanttext %}</p> | ||
| <ul> | ||
| <li>{% translate warning1 %}</li> | ||
| <li>{% translate warning2 %}</li> | ||
| <li>{% translate warning3 %}</li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR is missing a menu translation key for navigation integration. A
menu-earnkey should be added in thelayoutsection (around line 1201) to match the pattern used by other pages likemenu-buy,menu-sell, etc. For example:menu-earn: "Earn Bitcoin". This is required to integrate the earn page into the navigation menu as requested in issue #2524.