layout | title | exclude_from_nav |
---|---|---|
no_menu |
Opening Reproducible Research: research project website and blog |
true |
{% capture authors %}{% for post in site.posts %}{% assign current_authors = post.author | split: ", " %}{% for author in current_authors %}{{ author }};{% endfor %}{% endfor %}{% endcapture %}
{% assign authors_array = authors | split: ";" | sort | uniq %}
Blog post authors:
-
{% for author in authors_array %}
- {{ author }} {% endfor %}
{% for post in site.posts %}
{{ post.date | date_to_string }}{% if post.author %} | By {{ post.author }}{% endif %}
{{ post.content | replace: 'h2', 'h4' | replace: 'h3', 'h5' }}
{% endfor %}
{% for current_page in site.pages %}
{% if current_page.layout != redirect and current_page.exclude_from_nav != true and current_page.exclude_from_all_pages != true %}
{% endif %}{% endfor %}