plugin-dev.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---
  2. layout: default
  3. title: Development
  4. nav: 3
  5. ---
  6. {% assign docs = site.plugin-dev|sort:"nav" %}
  7. <div class="light-wrapper">
  8. <div class="inner">
  9. <h1 class="aligncenter">Create your own plugins &amp; themes</h1>
  10. <p class="description aligncenter">
  11. Pico is highly customizable -- the possibilites are endless when you're in control.
  12. </p><br />
  13. <div class="one-fourth">
  14. <ul>
  15. {% for doc in docs %}
  16. {% for item in doc.toc %}
  17. <li>
  18. {% if item[1]._title %}
  19. <a href="#{{ item[0] }}">{{ item[1]._title }}</a>
  20. <ul>
  21. {% for sub in item[1] %}
  22. {% if sub[0] != "_title" %}
  23. <li><a href="#{{ sub[0] }}">{{ sub[1] }}</a></li>
  24. {% endif %}
  25. {% endfor %}
  26. </ul>
  27. {% else %}
  28. <a href="#{{ item[0] }}">{{ item[1] }}</a>
  29. {% endif %}
  30. </li>
  31. {% endfor %}
  32. {% endfor %}
  33. </ul>
  34. </div>
  35. <div class="three-fourth last">
  36. {% for doc in docs %}
  37. {{ doc.output }}
  38. {% endfor %}
  39. <hr>
  40. </div>
  41. <div class="clear"></div>
  42. </div>
  43. </div>