forked from plausible/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
31 lines (29 loc) · 1.49 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: default
title: What's new in Plausible Analytics
description: This is the changelog for Plausible Analytics. It lists new and updated features so you can get a quick overview of what's new in your Plausible account.
---
<div class="container max-w-screen-sm mt-24">
<div class="text-center">
<h1 class="text-4xl font-black">What's new in Plausible Analytics</h1>
<p class="content-text text-lg mt-6">
This is the changelog for Plausible Analytics. It lists new and updated features so you can get a quick overview of what's new. You can follow us on <a href="https://twitter.com/plausiblehq" target="_blank" class="text-indigo-600 hover:underline">Twitter</a> or <a href="https://fosstodon.org/@plausible" target="_blank" class="text-indigo-600 hover:underline">Mastodon</a> for more updates.
</p>
</div>
</div>
<ul class="container mt-12">
<hr class="w-full bg-gray-100 my-12" style="height: 1px;">
{% assign sorted = site.changes | reverse %}
{%- for post in sorted -%}
<li class="mt-10 list-reset lg:flex items-start">
<time class="lg:mt-1 uppercase text-xs lg:text-sm lg:leading-9 text-gray-500 font-bold w-48 flex-shrink-0">{{ post.date | date: "%b %-d, %Y" }}</time>
<div>
<h2 class="text-2xl tracking-tight font-extrabold text-gray-900 md:text-3xl">
{{ post.title | escape }}
</h2>
<div class="mt-6 prose max-w-none">{{ post.content }}</div>
</div>
</li>
<hr class="w-full bg-gray-100 my-12" style="height: 1px;">
{%- endfor -%}
</ul>