Checkpoint. Mostly done.
This commit is contained in:
parent
317a241460
commit
f3fd512485
33 changed files with 687 additions and 10 deletions
25
source/_includes/asides/ecosystem_navigation.html
Normal file
25
source/_includes/asides/ecosystem_navigation.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{% assign url_parts = page.url | split: "/" %}
|
||||
{% if url_parts[2] == "ios" %}
|
||||
{% include asides/ecosystem_ios_navigation.html | compact_newlines %}
|
||||
{% comment %}
|
||||
{% elsif url_parts[2] == "cookbook" %}
|
||||
{% include asides/cookbook_navigation.html | compact_newlines %}
|
||||
{% endcomment %}
|
||||
{% else %}
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
{% include edit_github.html %}
|
||||
{% assign ecosystem = site.ecosystem | sort: "title" %}
|
||||
|
||||
<div class="section">
|
||||
<h1 class="title delta">Ecosystem</h1>
|
||||
<ul class="divided">
|
||||
{% for tool in ecosystem %}
|
||||
{% assign filename = tool.path | split: "/" %}
|
||||
{% if filename.size == 2 %}
|
||||
<li><a href="{{tool.url}}">{{tool.title}}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue