forked from btcfoundationedcom/btcfoundationedcom.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46ca113
commit 780e684
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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,7 @@ | ||
<ul> | ||
<li>Introduction to Bitcoin: <a href="http://btcfoundationedcom.github.io/guides/introduction_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/introduction_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/introduction.html">html</a></li> | ||
<li>Bitcoin for Regulators: <a href="http://btcfoundationedcom.github.io/guides/regulators_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/regulators_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/regulators.html">html</a></li> | ||
<li>Selecting a Wallet and Protecting your bitcoins: <a href="http://btcfoundationedcom.github.io/guides/security_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/security_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/security.html">html</a></li> | ||
<li>Best Practices for Buying Bitcoin: Exchanges and Brokerages: <a href="http://btcfoundationedcom.github.io/guides/buying_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/buying_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/buying.html">html</a></li> | ||
<li>Best Practices for Businesses: <a href="http://btcfoundationedcom.github.io/guides/businesses_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/businesses_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/businesses.html">html</a></li> | ||
</ul> |
This file contains 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,5 @@ | ||
- Introduction to Bitcoin: [PDF letter size](http://btcfoundationedcom.github.io/guides/introduction_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/introduction_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/introduction.html) | ||
- Bitcoin for Regulators: [PDF letter size](http://btcfoundationedcom.github.io/guides/regulators_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/regulators_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/regulators.html) | ||
- Selecting a Wallet and Protecting your bitcoins: [PDF letter size](http://btcfoundationedcom.github.io/guides/security_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/security_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/security.html) | ||
- Best Practices for Buying Bitcoin: Exchanges and Brokerages: [PDF letter size](http://btcfoundationedcom.github.io/guides/buying_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/buying_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/buying.html) | ||
- Best Practices for Businesses: [PDF letter size](http://btcfoundationedcom.github.io/guides/businesses_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/businesses_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/businesses.html) |
This file contains 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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#!/bin/bash | ||
for i in *.md | ||
do | ||
REPO="https://github.com/btcfoundationedcom/btcfoundationedcom.github.io/raw/master/guides/" | ||
FNAME=`basename $i .md` | ||
TITLE=`head -1 ${FNAME}.md | sed "s/\% //"` | ||
LETTER=`echo ${FNAME}_letter.pdf` | ||
A4=`echo ${FNAME}_a4.pdf` | ||
HTML=`echo ${FNAME}.html` | ||
LETTER="$REPO/${FNAME}_letter.pdf" | ||
A4="$REPO/${FNAME}_a4.pdf" | ||
HTML="$REPO/${FNAME}.html" | ||
echo "- ${TITLE}: [PDF letter size]($LETTER), [PDF A4 size]($A4), [html]($HTML)" | ||
done |