1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-08 13:09:09 +00:00

Hide Valentine's Day sale from features

it's not too nice I believe to see you just missed out on a sale - especially the color catches your attention. Still can be seen in blogs naturally, but featuring it after the sale is odd
This commit is contained in:
davegson 2023-02-20 09:48:55 +01:00
parent f2760102fd
commit a5f7cb347d
4 changed files with 7 additions and 3 deletions

View file

@ -6,6 +6,7 @@ title: "Valentine's Day 69 Sale"
date: 2023-02-14
author: David
custom_thumbnail_name: 69-sale
hide_from_features: true
---
### Portmaster Unlimited Is on SALE for Valentine's Day

View file

@ -116,7 +116,8 @@ title: Safing Portmaster - Features
<div class="showcase-two-bottom" style="max-width: 100%;">
<div class="blogpod-container" style="margin-top: 0;">
<div class="blogpod-container-bottom">
{% assign all_publications = site.publications | sort: "date" | reverse %}
{% assign all_publications = site.publications | where_exp:"item",
"item.hide_from_features != true" | sort: "date" | reverse %}
{% for publication in all_publications limit: 3 %}
{% if publication.category == "blog" %}
{% assign post = publication %}

View file

@ -122,7 +122,8 @@ redirect_from:
</div>
<div class="blogpod-container-bottom">
{% assign all_publications = site.publications | sort: "date" | reverse %}
{% assign all_publications = site.publications | where_exp:"item",
"item.hide_from_features != true" | sort: "date" | reverse %}
{% for publication in all_publications limit: 6 %}
{% if publication.category == "blog" %}
{% assign post = publication %}

View file

@ -229,7 +229,8 @@ layout: page
<div class="showcase-two-bottom" style="max-width: 100%;">
<div class="blogpod-container" style="margin-top: 0;">
<div class="blogpod-container-bottom">
{% assign all_publications = site.publications | sort: "date" | reverse %}
{% assign all_publications = site.publications | where_exp:"item",
"item.hide_from_features != true" | sort: "date" | reverse %}
{% for publication in all_publications limit: 3 %}
{% if publication.category == "blog" %}
{% assign post = publication %}