---
layout: page
title: Accepted Papers
permalink: /accepted
nav: true
nav_order: 1
pagination:
enabled: true
collection: accepted
permalink: /page/:num/
per_page: 5
trail:
before: 1 # The number of links before the current page
after: 3 # The number of links after the current page
---
{%- if page.title -%}
{{ page.title }}
{%- endif -%}
{% assign posts = paginator.posts %}
{%- if posts.size > 0 -%}
{%- if page.list_title -%}
{{ page.list_title }}
{%- endif -%}
{%- for post in posts -%}
-
{{ post.path | replace:'.md','' | replace:'.html','' | replace:'_accepted/','' }}
{{ post.description }}
{%- if site.show_excerpts -%}
{{ post.excerpt }}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{% if paginator.total_pages > 1 %}
{% assign start = paginator.page | minus: 2 %}
{% assign end = paginator.page | plus: 2 %}
{% if start < 1 %}
{% assign start = 1 %}
{% assign end = start | plus: 4 %}
{% elsif end > paginator.total_pages %}
{% assign start = paginator.total_pages | minus: 4 %}
{% assign end = paginator.total_pages %}
{% endif %}
{% if start < 1 %}
{% assign start = 1 %}
{% endif %}
{% if end > paginator.total_pages %}
{% assign end = paginator.total_pages %}
{% endif %}
{% endif %}