Paulus Schoutsen 80b268cd65
Extract developer site (#5249)
* Extract developer site

* Fix title in sidebar

* Update dev section reference

* Update edit in github link on help page
2018-04-26 11:14:55 -04:00

27 lines
623 B
HTML

---
layout: default
---
<article class="page">
{% assign url_parts = page.url | split: '/' %}
{% if url_parts[1] != 'components' and
url_parts[1] != 'cookbook' and
url_parts[1] != 'developers' and
url_parts[1] != 'help' and
url_parts[1] != 'getting-started' %}
{% include edit_github.html %}
{% endif %}
{% if page.title and page.show_title != false %}
<header>
<h1 class="title indent">
{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}
</h1>
</header>
<hr class="divider">
{% endif %}
{{ content }}
</article>