Add empty plugin-dev skeleton

This commit is contained in:
Daniel Rudolf 2015-10-12 16:42:45 +02:00
parent 18335fa28e
commit 4d6add6da8
5 changed files with 59 additions and 2 deletions

View file

@ -3,3 +3,4 @@ description: A stupidly simple, blazing fast, flat file CMS.
base_url: http://phrozenbyte.github.io/Pico
collections:
- docs
- plugin-dev

9
_plugin-dev/basics.md Normal file
View file

@ -0,0 +1,9 @@
---
toc:
basics: Basics
nav: 1
---
# Basics
Coming soon!

View file

@ -1,7 +1,7 @@
---
layout: default
title: Download
nav: 4
nav: 5
---
<div class="light-wrapper">

47
plugin-dev.html Normal file
View file

@ -0,0 +1,47 @@
---
layout: default
title: Contribute
nav: 3
---
{% assign docs = site.plugin-dev|sort:"nav" %}
<div class="light-wrapper">
<div class="inner">
<h1 class="aligncenter">Contribute to Pico</h1>
<p class="description aligncenter">
Pico is highly customizable in two different ways: On the one hand you can change Picos apperance by using themes,
on the other hand you can add new functionality by using plugins.
</p><br />
<div class="one-fourth">
<ul>
{% for doc in plugin-dev %}
{% for item in doc.toc %}
<li>
{% if item[1]._title %}
<a href="#{{ item[0] }}">{{ item[1]._title }}</a>
<ul>
{% for sub in item[1] %}
{% if sub[0] != "_title" %}
<li><a href="#{{ sub[0] }}">{{ sub[1] }}</a></li>
{% endif %}
{% endfor %}
</ul>
{% else %}
<a href="#{{ item[0] }}">{{ item[1] }}</a>
{% endif %}
</li>
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="three-fourth last">
{% for doc in docs %}
{{ doc.output }}
{% endfor %}
<hr>
</div>
<div class="clear"></div>
</div>
</div>

View file

@ -1,7 +1,7 @@
---
layout: default
title: Plugins
nav: 3
nav: 4
---
<div class="light-wrapper">