Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1.43 KB

all_content.md

File metadata and controls

52 lines (35 loc) · 1.43 KB
layout title exclude_from_nav
no_menu
Opening Reproducible Research: research project website and blog
true

o2r logo

{{ page.title }}

{% 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 %}

Blog posts

{% for post in site.posts %}

{{ post.title }}

{{ post.date | date_to_string }}{% if post.author %} | By {{ post.author }}{% endif %} {{ post.content | replace: 'h2', 'h4' | replace: 'h3', 'h5' }}
{% endfor %}

Website pages

{% 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 %}

{{ current_page.title }}

{{ current_page.content | replace: 'h2', 'h4' | replace: 'h3', 'h5' }}
{% endif %}

{% endfor %}