diff --git a/collections/_posts/2021-8-25-Theme-Antarctica.md b/collections/_posts/2021-8-25-Theme-Antarctica.md index 6dbeebe..028be99 100644 --- a/collections/_posts/2021-8-25-Theme-Antarctica.md +++ b/collections/_posts/2021-8-25-Theme-Antarctica.md @@ -1,7 +1,7 @@ --- layout: article title: Theme Antarctica -abstract: Highlights and instructions for users of this theme +abstract: An overview of this theme, including highlights and instructions of use categories: misc tags: antarctica theme eyeCatcher: https://refstatic.sk/article/od-antarktidy-sa-odtrhol-jeden-z-najvacsich-zaznamenanych-ladovcov-v-historii~25d92685f6b3b93aefe6.jpg?is=1440x513c&ic=0x439x1579x562&c=2w&s=e0efd5864ab1b7e41b8c7f5e0912f84b404ca30a53df8461106b377c19a24a21 diff --git a/collections/_posts/2022-05-10-Antarctica-0.2-is-released.md b/collections/_posts/2022-05-10-Antarctica-0.2-is-released.md new file mode 100755 index 0000000..769bda1 --- /dev/null +++ b/collections/_posts/2022-05-10-Antarctica-0.2-is-released.md @@ -0,0 +1,18 @@ +--- +layout: article +title: Antarctica 0.2 Is Released +abstract: Highlights in the second release of Antarctica +categories: announcement +tags: antarctica release-note +eyeCatcher: https://i.pinimg.com/originals/82/21/fc/8221fc6897d8824e9f4a612662a6f38e.jpg +--- + +Months after the Antarctica 0.1, the second release of Antarctica is finally arrived. This update includes some minor changes in appearance, and some major functional enhancements: +* Scrollable widget bar +* Comment widget improvement +* Related sites widget +* Table of contents widget +* Pinned post +* Abstract/excerpt in preview + +I hope you will enjoy this new release, and build awesome sites with it! \ No newline at end of file diff --git a/home.html b/home.html index fc75a52..822db65 100755 --- a/home.html +++ b/home.html @@ -12,8 +12,16 @@ {%- assign post = site.posts | concat: site.projects | sort: 'date' | reverse -%} {%- assign posts = site.posts | concat: site.projects -%} {%- for item in posts -%} - {% if item != nil %} + {% if item != nil and item.properties contains "pinned" %} {% include postPrev.html %} {% endif %} {%- endfor -%} - \ No newline at end of file + + {%- for item in posts -%} + {% unless item == nil or item.properties contains "pinned" %} + {% include postPrev.html %} + {% endunless %} + {%- endfor -%} + + +{{ content }} \ No newline at end of file