Skip to content

Latest commit

 

History

History
70 lines (54 loc) · 2.5 KB

index.markdown

File metadata and controls

70 lines (54 loc) · 2.5 KB
layout title
home
Release Notes Home

Quick Links

This will send an update message to the release notice slack channel

Heads Up Form

Have a Production Release?

Production Release

Launching an Experiment?

New Experiment

Updating an Experiment?

Experiment Update

{% if site.paginate %} {% assign posts = paginator.posts %} {% else %} {% assign posts = site.posts %} {% endif %}

Release Dates

{%- if posts.size > 0 -%} {%- if page.list_title -%}

{{ page.list_title }}

{%- endif -%}
    {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} {%- for post in posts -%}
  • {{ post.title | escape }} {%- if site.show_excerpts -%} {{ post.excerpt }} {%- endif -%}
  • {%- endfor -%}

{% if site.paginate %}
  <div class="pager">
    <ul class="pagination">
    {%- if paginator.previous_page %}
      <li><a href="{{ paginator.previous_page_path | relative_url }}" class="previous-page">{{ paginator.previous_page }}</a></li>
    {%- else %}
      <li><div class="pager-edge">•</div></li>
    {%- endif %}
      <li><div class="current-page">{{ paginator.page }}</div></li>
    {%- if paginator.next_page %}
      <li><a href="{{ paginator.next_page_path | relative_url }}" class="next-page">{{ paginator.next_page }}</a></li>
    {%- else %}
      <li><div class="pager-edge">•</div></li>
    {%- endif %}
    </ul>
  </div>
{%- endif %}

{%- endif -%}