Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 869 Bytes

authors.md

File metadata and controls

23 lines (22 loc) · 869 Bytes
title layout
入賞者インデックス
default

{% capture author_entries %}{% for entry in site.pages %}{% if entry.layout == "entry" %}{% for author in entry.authors %}{{ author }};{{ entry.id }} {% endfor %}{% endif %}{% endfor %}{% endcapture %} {% assign author_entries = author_entries | split: " " | sort %} {% assign prev_author = nil %} {% for author_entry_str in author_entries %} {% assign author_entry = author_entry_str | split: ";" %} {% assign author = author_entry[0] %} {% assign entry = author_entry[1] %} {% if author != prev_author %} {% assign prev_author = author %} {: #"{{ author }}" } {% assign show_name = site.data.authors[author] %} {% if show_name == nil %} {% assign show_name = author | replace: "_", " " %} {% endif %}

{{ show_name }}

{% endif %} * [[[{{ entry }}]]]({{ entry }}.html) {% endfor %}