-
Notifications
You must be signed in to change notification settings - Fork 4
/
changelog.html
34 lines (32 loc) · 1.75 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
32
33
34
---
layout: default
published: false
---
<div class="cell changelog grid-x">
<h1>The Unrelease! <span>a.k.a. changelog</span></h1>
<div class="cell grid-x grid-padding-x grid-margin-y">
<div class="cell small-12 medium-8 description">
<p>My release schedule is not what you typically see. Rather than waiting and bundling a bunch of cool stuff for a major version. I release them as they are ready and the branding and celebration comes towards the end of the year, ready to explore new adventure in the year to come.</p>
<p>Explore the release celebration as part of my year in review each year!</p>
<p class="build">This site is designed in a sketchbook, Sketch & Figma, built using Jekyll, Foundation CSS and Github Pages for hosting. Adobe Photoshop and Affinity Photo were fired up for images and photography and later optimzied in ImageOptim.</p>
</div>
<div class="cell small-12 medium-auto grid-margin-y">
<div class="cell gif-container">
<img src="/img/unbirthday.gif" alt="Happy Unbirthday">
</div>
<div class="cell git">
<i class="fab fa-github fa-4x" title="Github"></i>
<p class="sub-header">Interested in how the code changes year to year?</p>
<p>Head over to the <a target="_blank" rel="noopener" href="https://github.com/naher94/rehanbutt.com/releases">Github</a> repository.</p>
</div>
</div>
</div>
{%- assign release-ordered = site.changelog | sort:'release-version' | reverse -%}
{%- for release in release-ordered -%}
<div class="cell medium-8 version-container">
<h2>v{{release.version-number}} {{release.version-name}}</h2>
<p class="release-date">{{ release.date | date: "%B %Y" }}</p>
<p>{{release.description}}</p>
</div>
{%- endfor -%}
</div>