diff --git a/site/_includes/docs_option.html b/site/_includes/docs_option.html new file mode 100644 index 00000000..8284ed96 --- /dev/null +++ b/site/_includes/docs_option.html @@ -0,0 +1,11 @@ +{% assign items = include.items | split: ' ' %} + +{% for item in items %} + {% assign item_url = item | prepend:'/docs/' | append:'/' %} + + {% for p in site.pages %} + {% if p.url == item_url %} + + {% endif %} + {% endfor %} +{% endfor %} diff --git a/site/_includes/docs_ul.html b/site/_includes/docs_ul.html new file mode 100644 index 00000000..fa7b9f60 --- /dev/null +++ b/site/_includes/docs_ul.html @@ -0,0 +1,20 @@ +{% assign items = include.items | split: ' ' %} + +