diff options
author | Loïc Hoguin <[email protected]> | 2017-05-24 18:34:54 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-05-24 18:34:54 +0200 |
commit | ba747a8782f61bf164abe7d54c44d5770d9f7b1d (patch) | |
tree | 497cf161c0b48b6730e8cbbd1f473afb011450e1 /_build | |
parent | 642b100b776c8f4864ae9a2afc11d7124f640ce3 (diff) | |
download | ninenines.eu-ba747a8782f61bf164abe7d54c44d5770d9f7b1d.tar.gz ninenines.eu-ba747a8782f61bf164abe7d54c44d5770d9f7b1d.tar.bz2 ninenines.eu-ba747a8782f61bf164abe7d54c44d5770d9f7b1d.zip |
Make the bountysource public and playbook more visible
Diffstat (limited to '_build')
-rw-r--r-- | _build/content/articles/erlanger-playbook.asciidoc | 13 | ||||
-rw-r--r-- | _build/content/slogan.asciidoc | 5 | ||||
-rw-r--r-- | _build/themes/ninenines/layouts/index.html | 3 | ||||
-rw-r--r-- | _build/themes/ninenines/static/js/custom.js | 4 |
4 files changed, 17 insertions, 8 deletions
diff --git a/_build/content/articles/erlanger-playbook.asciidoc b/_build/content/articles/erlanger-playbook.asciidoc index 4a67bf22..5068f3c9 100644 --- a/_build/content/articles/erlanger-playbook.asciidoc +++ b/_build/content/articles/erlanger-playbook.asciidoc @@ -16,15 +16,18 @@ management (for open source projects). The following sections are currently available: -* About this book; Future additions +* About this book; Changelog; Future additions +* _Erlang:_ Building blocks; Patterns * _Workflow:_ Think; Write; Stay productive -* _Documentation:_ On documentation; Tutorials; User guide; Manual -* _Code:_ Starting a project; Version control; Project structure; Code style; Best practices; Special processes +* _Documentation:_ On documentation; Tutorials; User guide; Manual; README files +* _Design:_ RESTful APIs; Lessons learned +* _Code:_ Starting a project; Version control; Project structure; Code style; Best practices; Special processes; IOLists; The process dictionary * _Tests:_ On testing; Success typing analysis; Manual testing; Unit testing; Functional testing +* _Selling Erlang:_ On persuasion; Don't let it crash Read a preview: link:/res/erlanger-preview.pdf[Special processes] -The book is currently just shy of 100 pages. The final version +The book is currently 180 pages long. The final version of the book is planned to be between 200 and 250 pages. A print version of the book will be considered once the final version gets released. The printed book is *not* included @@ -63,7 +66,7 @@ This process is currently manual. As the book is a pre-release, feedback is more than welcome. You can send your comments to erlanger@ this website. -The plan is to add about 20 pages every month until it is completed. +The plan is to add content regularly until I run out of things to say. You will receive updates to the book for free as soon as they are available. Huge thanks for your interest in buying this book! diff --git a/_build/content/slogan.asciidoc b/_build/content/slogan.asciidoc index f132e064..1bb2b0a3 100644 --- a/_build/content/slogan.asciidoc +++ b/_build/content/slogan.asciidoc @@ -3,5 +3,6 @@ date = "2015-07-01T00:00:00+01:00" title = "Slogan" +++ -The Erlanger Playbook is now available! + -link:/articles/erlanger-playbook[Buy now] — link:/services[Become a Cowboy project sponsor] +Feeling generous? Love reading? + +https://salt.bountysource.com/teams/ninenines[Crowdfund my salary] +or buy link:/articles/erlanger-playbook[The Erlanger Playbook] diff --git a/_build/themes/ninenines/layouts/index.html b/_build/themes/ninenines/layouts/index.html index 49eff047..e37230a9 100644 --- a/_build/themes/ninenines/layouts/index.html +++ b/_build/themes/ninenines/layouts/index.html @@ -3,7 +3,7 @@ <div class="navbar"> <div class="navbar-inner"> <div class="container"> - <em class="brand">Our projects</em> + <em class="brand">All projects</em> <div class="nav-collapse"> <ul class="nav"> {{ $.Scratch.Set "projects" 0 }} @@ -13,6 +13,7 @@ {{ $.Scratch.Add "projects" 1 }} </li> {{ end }} + <li><a href="/articles/erlanger-playbook">The Erlanger Playbook</a></li> </ul> </div> </div> diff --git a/_build/themes/ninenines/static/js/custom.js b/_build/themes/ninenines/static/js/custom.js index 7e674540..38d12e4d 100644 --- a/_build/themes/ninenines/static/js/custom.js +++ b/_build/themes/ninenines/static/js/custom.js @@ -3,6 +3,10 @@ var projects_nav = function() { var panels = document.querySelectorAll('.carousel-inner>div'); Array.prototype.forEach.call(nav, function(el) { + if (el.dataset.panel === undefined) { + return; + } + el.addEventListener('click', function(ev) { ev.preventDefault(); |