diff --git a/404.html b/404.html
index c54ed6c8..bfb66f08 100644
--- a/404.html
+++ b/404.html
@@ -1,4 +1,7 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+
layout: base
lang: en
id: index
diff --git a/Makefile b/Makefile
index 33d64168..384ecb91 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-## Optional Makefile: only used for testing & maintainer automation;
-## not used to build live site
+## This file is licensed under the MIT License (MIT) available on
+## http://opensource.org/licenses/MIT.
S=@ ## Silent: only print errors by default;
## run `make S='' [other args]` to print commands as they're run
@@ -198,6 +198,12 @@ check-for-missing-copyright-licenses:
## say MIT license, but it has to say something.) This can be extended
## to include other directories by adding them after "_includes/"
$S git grep -iL 'This file is licensed' _includes/ | eval $(ERROR_ON_OUTPUT)
+ $S git ls-files | grep -v '^_alerts' \
+ | while read file ; do \
+ if sed -n 1p $$file | grep -q '^---$$' ; then \
+ grep -iL 'This file is licensed' $$file ; \
+ fi ; \
+ done | eval $(ERROR_ON_OUTPUT)
check-for-missing-rpc-summaries:
## Make sure the Quick Reference section has a summary for each RPC we
diff --git a/README.md b/README.md
index 15fe83f3..21c9dfd8 100644
--- a/README.md
+++ b/README.md
@@ -408,6 +408,9 @@ recommend naming it after the release, such as `0.10.0.md`
Then copy in the following YAML header (the part between the three dashes, ---):
~~~
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+
## Required value below populates the %v variable (note: % needs to be escaped in YAML if it starts a value)
required_version: 0.10.0
## Optional release date. May be filled in hours/days after a release
diff --git a/_alerts/2015-07-04-spv-mining.md b/_alerts/2015-07-04-spv-mining.md
index 5824734c..a641cf5e 100644
--- a/_alerts/2015-07-04-spv-mining.md
+++ b/_alerts/2015-07-04-spv-mining.md
@@ -1,4 +1,7 @@
---
+## This file is licensed under the MIT License (MIT) available on
+## http://opensource.org/licenses/MIT.
+
title: "Some Miners Generating Invalid Blocks"
alias: "spv-mining"
active: false
diff --git a/_events.yml b/_events.yml
index 3bb0dcf0..376698c0 100644
--- a/_events.yml
+++ b/_events.yml
@@ -174,6 +174,14 @@
country: "United States"
link: "http://www.imtconferences.com/mtbit/"
+- date: 2015-12-14
+ title: "Inside Bitcoins San Diego"
+ venue: "San Diego Convention Center"
+ address: "111 W. Harbor Drive"
+ city: "San Diego"
+ country: "United States"
+ link: "http://insidebitcoins.com/san-diego/2015?utm_source=bitcoinorg&utm_medium=eventlisting&utm_campaign=bitcoinorgeventlistingibsd"
+
- date: 2016-04-04
title: "Money 20/20 Europe"
venue: "Bella Center"
diff --git a/_includes/layout/base/breadcrumbs.html b/_includes/layout/base/breadcrumbs.html
new file mode 100644
index 00000000..fd2f430d
--- /dev/null
+++ b/_includes/layout/base/breadcrumbs.html
@@ -0,0 +1,28 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
+ {% for crumb in page.breadcrumbs %}
+ {% if forloop.last %}
+ {% case crumb %}
+ {% when "GLOSSARY_ENTRY_TITLE" %}
+ {% comment %} ## Only show first synonym in crumb ## {% endcomment %}
+ {% for synonym in page.required.synonyms_shown_in_glossary_capitalize_first_letter %}
+ {% if forloop.first %}{{synonym}}{% endif %}
+ {% endfor %}
+ {% else %}{{crumb}}
+ {% endcase %}
+ {% else %}
+ {% case crumb %}
+ {% comment %}/// Alphabetical order by crumb \\\{% endcomment %}
+ {% when "bitcoin" %}{% translate bitcoin vocabulary %}
+ {% when "dev docs" %}Dev Docs
+ {% when "glossary" %}Glossary
+ {% else %}{% die "Breadcrumb not found in _includes/layout/breadcrumbs.html" %}
+ {% endcase %}
+ >
+ {% endif %}
+ {% endfor %}
+
diff --git a/_includes/layout/base/content.html b/_includes/layout/base/content.html
new file mode 100644
index 00000000..001db305
--- /dev/null
+++ b/_includes/layout/base/content.html
@@ -0,0 +1,8 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
+ {{ content }}
+
diff --git a/_includes/layout/base/footer-js.html b/_includes/layout/base/footer-js.html
new file mode 100644
index 00000000..b75ea04a
--- /dev/null
+++ b/_includes/layout/base/footer-js.html
@@ -0,0 +1,9 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
diff --git a/_includes/layout/base/footer-license.html b/_includes/layout/base/footer-license.html
new file mode 100644
index 00000000..3332cef0
--- /dev/null
+++ b/_includes/layout/base/footer-license.html
@@ -0,0 +1,6 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
diff --git a/_includes/layout/base/footer-menu.html b/_includes/layout/base/footer-menu.html
new file mode 100644
index 00000000..1af12879
--- /dev/null
+++ b/_includes/layout/base/footer-menu.html
@@ -0,0 +1,18 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
diff --git a/_includes/layout/base/footer-sponsor.html b/_includes/layout/base/footer-sponsor.html
new file mode 100644
index 00000000..9922946e
--- /dev/null
+++ b/_includes/layout/base/footer-sponsor.html
@@ -0,0 +1,8 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
diff --git a/_includes/layout/base/head-language-dropdown.html b/_includes/layout/base/head-language-dropdown.html
new file mode 100644
index 00000000..770ba9e9
--- /dev/null
+++ b/_includes/layout/base/head-language-dropdown.html
@@ -0,0 +1,17 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+ {% assign i = 0 %}{% assign c = site.langsorder.size | divided_by: 2 | plus: 1 %}
+ {% for lang in site.langsorder %}{% assign mod = i | modulo: c %}{% assign active = ''%}{% if lang == page.lang %}{% assign active = ' class="active"'%}{% endif %}
+ {% if mod == 0 and i != 0 %}
diff --git a/_includes/layout/base/head-language-select.html b/_includes/layout/base/head-language-select.html
new file mode 100644
index 00000000..ada4678f
--- /dev/null
+++ b/_includes/layout/base/head-language-select.html
@@ -0,0 +1,9 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
diff --git a/_includes/layout/base/head-logo.html b/_includes/layout/base/head-logo.html
new file mode 100644
index 00000000..1de7c8f6
--- /dev/null
+++ b/_includes/layout/base/head-logo.html
@@ -0,0 +1,6 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
diff --git a/_includes/layout/base/head-menu.html b/_includes/layout/base/head-menu.html
new file mode 100644
index 00000000..af454160
--- /dev/null
+++ b/_includes/layout/base/head-menu.html
@@ -0,0 +1,35 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
- {% assign i = 0 %}{% assign c = site.langsorder.size | divided_by: 2 | plus: 1 %}
- {% for lang in site.langsorder %}{% assign mod = i | modulo: c %}{% assign active = ''%}{% if lang == page.lang %}{% assign active = ' class="active"'%}{% endif %}
- {% if mod == 0 and i != 0 %}
+
+{% include layout/base/footer-js.html %}
diff --git a/_layouts/glossary_entry.html b/_layouts/glossary_entry.html
index 69c99193..552f469a 100644
--- a/_layouts/glossary_entry.html
+++ b/_layouts/glossary_entry.html
@@ -4,6 +4,11 @@
layout: base
lang: en
+breadcrumbs:
+ - bitcoin
+ - dev docs
+ - glossary
+ - GLOSSARY_ENTRY_TITLE
---
diff --git a/_less/screen.less b/_less/screen.less
index 02d97e6a..6ee03313 100644
--- a/_less/screen.less
+++ b/_less/screen.less
@@ -363,6 +363,10 @@ table td,table th{
display:block;
}
+.breadcrumbs {
+ font-size: 75%;
+ padding-left: 10px;
+}
.content{
position:relative;
padding:30px 40px 40px 40px;
diff --git a/_posts/2015-06-16-hard-fork-policy.md b/_posts/2015-06-16-hard-fork-policy.md
index 81cacae2..e2ad00a5 100644
--- a/_posts/2015-06-16-hard-fork-policy.md
+++ b/_posts/2015-06-16-hard-fork-policy.md
@@ -1,4 +1,7 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+
type: posts
layout: post
lang: en
diff --git a/_posts/2015-06-23-repository-move.md b/_posts/2015-06-23-repository-move.md
index 88334f1a..cf5f9c5c 100644
--- a/_posts/2015-06-23-repository-move.md
+++ b/_posts/2015-06-23-repository-move.md
@@ -1,4 +1,7 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+
type: posts
layout: post
lang: en
diff --git a/_releases/0.10.0.md b/_releases/0.10.0.md
index 39c00e46..39be7f17 100644
--- a/_releases/0.10.0.md
+++ b/_releases/0.10.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Required value below populates the %v variable (note: % needs to be escaped in YAML if it starts a value)
required_version: 0.10.0
## Optional release date. May be filled in hours/days after a release
diff --git a/_releases/0.10.1.md b/_releases/0.10.1.md
index 1917ba0e..493b2300 100644
--- a/_releases/0.10.1.md
+++ b/_releases/0.10.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Required value below populates the %v variable (note: % needs to be escaped in YAML if it starts a value)
required_version: 0.10.1
## Optional release date. May be filled in hours/days after a release
diff --git a/_releases/0.10.2.md b/_releases/0.10.2.md
index cfc94cbf..44d5d48d 100644
--- a/_releases/0.10.2.md
+++ b/_releases/0.10.2.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Required value below populates the %v variable (note: % needs to be escaped in YAML if it starts a value)
required_version: 0.10.2
## Optional release date. May be filled in hours/days after a release
diff --git a/_releases/0.11.0.md b/_releases/0.11.0.md
index 4cfa982a..b9f54625 100644
--- a/_releases/0.11.0.md
+++ b/_releases/0.11.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Required value below populates the %v variable (note: % needs to be escaped in YAML if it starts a value)
required_version: 0.11.0
## Optional release date. May be filled in hours/days after a release
diff --git a/_releases/0.3.21.md b/_releases/0.3.21.md
index 97373c6e..fbe62f00 100644
--- a/_releases/0.3.21.md
+++ b/_releases/0.3.21.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.3.21
optional_date: 2011-04-27
diff --git a/_releases/0.3.22.md b/_releases/0.3.22.md
index ace35601..b1a4b1cc 100644
--- a/_releases/0.3.22.md
+++ b/_releases/0.3.22.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.3.22
optional_date: 2011-06-05
diff --git a/_releases/0.3.23.md b/_releases/0.3.23.md
index 11d86181..5a8ab003 100644
--- a/_releases/0.3.23.md
+++ b/_releases/0.3.23.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.3.23
optional_date: 2011-06-14
diff --git a/_releases/0.3.24.md b/_releases/0.3.24.md
index 8bd6bfa0..0701fe9d 100644
--- a/_releases/0.3.24.md
+++ b/_releases/0.3.24.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.3.24
optional_date: 2011-07-08
diff --git a/_releases/0.4.0.md b/_releases/0.4.0.md
index 0b3888f5..1d5809c5 100644
--- a/_releases/0.4.0.md
+++ b/_releases/0.4.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.4.0
optional_date: 2011-09-23
diff --git a/_releases/0.5.0.md b/_releases/0.5.0.md
index b8682250..c9a13d92 100644
--- a/_releases/0.5.0.md
+++ b/_releases/0.5.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.5.0
optional_date: 2011-11-21
diff --git a/_releases/0.5.1.md b/_releases/0.5.1.md
index b0883a7e..bb4d2280 100644
--- a/_releases/0.5.1.md
+++ b/_releases/0.5.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.5.1
optional_date: 2011-12-15
diff --git a/_releases/0.5.2.md b/_releases/0.5.2.md
index 6bd0d915..2baf9f09 100644
--- a/_releases/0.5.2.md
+++ b/_releases/0.5.2.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.5.2
optional_date: 2012-01-09
diff --git a/_releases/0.5.3.1.md b/_releases/0.5.3.1.md
index 8a1fda29..bfda6840 100644
--- a/_releases/0.5.3.1.md
+++ b/_releases/0.5.3.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.5.3.1
optional_date: 2012-03-16
diff --git a/_releases/0.5.3.md b/_releases/0.5.3.md
index 67e4e050..0e3e4988 100644
--- a/_releases/0.5.3.md
+++ b/_releases/0.5.3.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.5.3
optional_date: 2012-03-14
diff --git a/_releases/0.6.0.md b/_releases/0.6.0.md
index 3e7bc397..cfcd0b75 100644
--- a/_releases/0.6.0.md
+++ b/_releases/0.6.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.6.0
optional_date: 2012-03-30
diff --git a/_releases/0.6.1.md b/_releases/0.6.1.md
index 6cb1472c..295ba12e 100644
--- a/_releases/0.6.1.md
+++ b/_releases/0.6.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.6.1
optional_date: 2012-05-04
diff --git a/_releases/0.6.2.md b/_releases/0.6.2.md
index ba927fa6..20e7ef83 100644
--- a/_releases/0.6.2.md
+++ b/_releases/0.6.2.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.6.2
optional_date: 2012-05-08
diff --git a/_releases/0.6.3.md b/_releases/0.6.3.md
index 8dc00ff1..666b1c87 100644
--- a/_releases/0.6.3.md
+++ b/_releases/0.6.3.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.6.3
optional_date: 2012-06-25
diff --git a/_releases/0.7.0.md b/_releases/0.7.0.md
index 7f5b288c..e0ebcb70 100644
--- a/_releases/0.7.0.md
+++ b/_releases/0.7.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.7.0
optional_date: 2012-09-17
diff --git a/_releases/0.7.1.md b/_releases/0.7.1.md
index c762be54..767582b6 100644
--- a/_releases/0.7.1.md
+++ b/_releases/0.7.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.7.1
optional_date: 2012-10-19
diff --git a/_releases/0.7.2.md b/_releases/0.7.2.md
index 52e803a4..5f7e9e56 100644
--- a/_releases/0.7.2.md
+++ b/_releases/0.7.2.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.7.2
optional_date: 2012-12-14
diff --git a/_releases/0.8.0.md b/_releases/0.8.0.md
index edc49847..d8c80dbe 100644
--- a/_releases/0.8.0.md
+++ b/_releases/0.8.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.8.0
optional_date: 2013-02-19
diff --git a/_releases/0.8.1.md b/_releases/0.8.1.md
index a06f87db..ca6cd3dc 100644
--- a/_releases/0.8.1.md
+++ b/_releases/0.8.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.8.1
optional_date: 2013-03-18
diff --git a/_releases/0.8.2.md b/_releases/0.8.2.md
index 95ca0ce9..a987177b 100644
--- a/_releases/0.8.2.md
+++ b/_releases/0.8.2.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.8.2
optional_date: 2013-05-29
diff --git a/_releases/0.8.3.md b/_releases/0.8.3.md
index 4549a57f..22ac8563 100644
--- a/_releases/0.8.3.md
+++ b/_releases/0.8.3.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.8.3
optional_date: 2013-06-25
diff --git a/_releases/0.8.4.md b/_releases/0.8.4.md
index 8ab559fa..b275ecab 100644
--- a/_releases/0.8.4.md
+++ b/_releases/0.8.4.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.8.4
optional_date: 2013-09-03
diff --git a/_releases/0.8.5.md b/_releases/0.8.5.md
index 2c288dfd..c1236ae3 100644
--- a/_releases/0.8.5.md
+++ b/_releases/0.8.5.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.8.5
optional_date: 2013-09-13
diff --git a/_releases/0.8.6.md b/_releases/0.8.6.md
index 41d5f5cf..5ce19ddd 100644
--- a/_releases/0.8.6.md
+++ b/_releases/0.8.6.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.8.6
optional_date: 2013-12-09
diff --git a/_releases/0.9.0.md b/_releases/0.9.0.md
index ead5708e..86a1d26b 100644
--- a/_releases/0.9.0.md
+++ b/_releases/0.9.0.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.9.0
optional_date: 2014-03-19
diff --git a/_releases/0.9.1.md b/_releases/0.9.1.md
index d2577b51..9a5a7edd 100644
--- a/_releases/0.9.1.md
+++ b/_releases/0.9.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.9.1
optional_date: 2014-04-08
diff --git a/_releases/0.9.2.1.md b/_releases/0.9.2.1.md
index c40ba8ae..867b7061 100644
--- a/_releases/0.9.2.1.md
+++ b/_releases/0.9.2.1.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.9.2.1
optional_date: 2014-06-19
diff --git a/_releases/0.9.2.md b/_releases/0.9.2.md
index 646cecec..1d478797 100644
--- a/_releases/0.9.2.md
+++ b/_releases/0.9.2.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.9.2
optional_date: 2014-06-16
diff --git a/_releases/0.9.3.md b/_releases/0.9.3.md
index 7d29a4a5..fef71a57 100644
--- a/_releases/0.9.3.md
+++ b/_releases/0.9.3.md
@@ -1,4 +1,9 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+# Text originally from Bitcoin Core project
+# Metadata and small formatting changes from Bitcoin.org project
+
## Please see _releases/0.10.0.md for a release template
required_version: 0.9.3
optional_date: 2014-09-27
diff --git a/_templates/privacy.html b/_templates/privacy.html
index 750069fb..5f1e252c 100755
--- a/_templates/privacy.html
+++ b/_templates/privacy.html
@@ -1,4 +1,7 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+
layout: base
id: privacy
---
diff --git a/_translations/en.yml b/_translations/en.yml
index d42e2e13..7f60680e 100644
--- a/_translations/en.yml
+++ b/_translations/en.yml
@@ -706,6 +706,7 @@ en:
footer: "Released under the MIT license"
sponsor: "A community website sponsored by"
getstarted: "Get started with Bitcoin"
+ bitcoin-core: "Bitcoin Core"
url:
about-us: about-us
bitcoin-for-developers: bitcoin-for-developers
diff --git a/en/developer-documentation.md b/en/developer-documentation.md
index fbdf263d..05d5a483 100644
--- a/en/developer-documentation.md
+++ b/en/developer-documentation.md
@@ -6,6 +6,9 @@ layout: base
lang: en
id: developer-documentation
title: "Developer Documentation - Bitcoin"
+breadcrumbs:
+ - bitcoin
+ - Developer Documentation
---
diff --git a/en/developer-examples.md b/en/developer-examples.md
index 31392aeb..8d235297 100644
--- a/en/developer-examples.md
+++ b/en/developer-examples.md
@@ -6,6 +6,10 @@ layout: base
lang: en
id: developer-examples
title: "Developer Examples - Bitcoin"
+breadcrumbs:
+ - bitcoin
+ - dev docs
+ - Examples
---
diff --git a/en/developer-glossary.html b/en/developer-glossary.html
index 26b0798d..6ad1803c 100644
--- a/en/developer-glossary.html
+++ b/en/developer-glossary.html
@@ -5,6 +5,10 @@
title: Developer Glossary - Bitcoin
layout: base
lang: en
+breadcrumbs:
+ - bitcoin
+ - dev docs
+ - Glossary
---
diff --git a/en/developer-guide.md b/en/developer-guide.md
index 40a3ae0c..81d93bf4 100644
--- a/en/developer-guide.md
+++ b/en/developer-guide.md
@@ -6,6 +6,10 @@ layout: base
lang: en
id: developer-guide
title: "Developer Guide - Bitcoin"
+breadcrumbs:
+ - bitcoin
+ - dev docs
+ - Guide
---
diff --git a/en/developer-reference.md b/en/developer-reference.md
index 270999aa..ca8e7887 100644
--- a/en/developer-reference.md
+++ b/en/developer-reference.md
@@ -6,6 +6,10 @@ layout: base
lang: en
id: developer-reference
title: "Developer Reference - Bitcoin"
+breadcrumbs:
+ - bitcoin
+ - dev docs
+ - Reference
---
diff --git a/js/events.js b/js/events.js
index 0d446cd1..bf21ef25 100644
--- a/js/events.js
+++ b/js/events.js
@@ -1,4 +1,7 @@
---
+# This file is licensed under the MIT License (MIT) available on
+# http://opensource.org/licenses/MIT.
+
layout: null
---