Skip to content

Latest commit

 

History

History
147 lines (147 loc) · 4.46 KB

review-index.md

File metadata and controls

147 lines (147 loc) · 4.46 KB
layout title permalink
page
Review index
/review-index/

Rating | Decades | Magazines | Anthologies

Stories by rating

5⭑

Amazing. Award worthy

    {% assign sorted_posts = site.tags.5 | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

4⭑

Very good. Best of the year material

    {% assign sorted_posts = site.tags.4 | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

3⭑

Good story. Worth reading

    {% assign sorted_posts = site.tags.3 | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

2⭑

Just okay

    {% assign sorted_posts = site.tags.2 | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

1⭑

Not recommended

    {% assign sorted_posts = site.tags.1 | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

Stories by decade

1940s

    {% assign sorted_posts = site.tags.1940s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

1950s

    {% assign sorted_posts = site.tags.1950s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

1960s

    {% assign sorted_posts = site.tags.1960s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

1970s

    {% assign sorted_posts = site.tags.1970s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

1980s

    {% assign sorted_posts = site.tags.1980s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

1990s

    {% assign sorted_posts = site.tags.1990s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

2000s

    {% assign sorted_posts = site.tags.2000s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

2010s

    {% assign sorted_posts = site.tags.2010s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

2020s

    {% assign sorted_posts = site.tags.2020s | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

Magazines

Asimov's Science Fiction

    {% assign sorted_posts = site.tags.asimovs | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

Analog Science Fiction & Fact

    {% assign sorted_posts = site.tags.analog | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

Clarkesworld

    {% assign sorted_posts = site.tags.clarkesworld | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

Fantasy & Science Fiction

    {% assign sorted_posts = site.tags.fsf | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}

Anthologies

    {% assign sorted_posts = site.categories.anthologies | sort: 'title' %} {% for post in sorted_posts %}
  • {{ post.title }}
  • {% endfor %}