This commit is contained in:
dmitry 2024-02-04 20:30:27 +02:00
parent 6571e8c61c
commit ab00a0efa1
2 changed files with 56 additions and 33 deletions

View file

@ -1,5 +1,6 @@
---
title: "No more trackers according to the latest Exodus Privacy Report!"
description: test
date: 2021-05-06T07:20:28+00:00
slug: "no-more-trackers-according-to-the-latest-exodus-privacy-report"
---

View file

@ -12,45 +12,67 @@
{% block content %}
<h1>{{ resource.title }}</h1>
{# Iterate and use en sections by default and use localized versions only if they are present #}
{% set enNewsSectionTranslation = section.translations | filter(attribute='lang', value='en') | first %}
{% set enNewsSection = get_section(path=enNewsSectionTranslation.path) %}
{% for sectionStr in enNewsSection.subsections | sort | reverse %}
{% set section = get_section(path=sectionStr) %}
{% for page in section.pages %}
{% set translatedPage = page.translations | filter(attribute='lang', value=lang) | first %}
{% if translatedPage %}
{# Iterate and use en sections by default and use localized versions only if they are present #}
{% set enNewsSectionTranslation = section.translations | filter(attribute='lang', value='en') | first %}
{% set enNewsSection = get_section(path=enNewsSectionTranslation.path) %}
{# set page = get_page(path=translatedPage.path) #}
{% endif %}
<section{% if page.translations | length <= 1 %} dir="auto"{% endif %}>
<div class="news_date">&nbsp;<a href="{{ page.path | safe }}">{{ page.date | date(format='%B %e, %Y') }}</a>&nbsp;</div>
{# Display wide images below the text instead of to the right. #}
{% set_global noflex = '' %}
{% for photo in page.assets %}
{% set meta = get_image_metadata(path=photo) %}
{% if meta.width > meta.height %}
{% set_global noflex = '_noflex' %}
{% break %}
{% for sectionStr in enNewsSection.subsections | sort | reverse %}
{% set section = get_section(path=sectionStr) %}
{% for page in section.pages %}
{% set translatedPage = page.translations | filter(attribute='lang', value=lang) | first %}
{% if translatedPage %}
{# set page = get_page(path=translatedPage.path) #}
{% endif %}
{% endfor %}
<div class="news_content_image{{ noflex }}">
{% if page.content %}
<div class="news_content">{{ page.content | safe }}</div>
{% endif %}
<span class="news_images">
{% for photo in page.assets | sort %}
<img class="news_image" src="{{ page.path | safe }}{{ photo | split(pat='/') | last }}" />
{% endfor %}
</span>
<section class="news__item" {% if page.translations | length <= 1 %} dir="auto"{% endif %}>
</section>
<div class="news_date">&nbsp;<a href="{{ page.path | safe }}">{{ page.date | date(format='%B %e, %Y') }}</a>&nbsp;</div>
{# Display wide images below the text instead of to the right. #}
{% set_global noflex = '' %}
{% for photo in page.assets %}
{% set meta = get_image_metadata(path=photo) %}
{% if meta.width > meta.height %}
{% set_global noflex = '_noflex' %}
{% break %}
{% endif %}
{% endfor %}
<style>
.news__wrapper {
display: flex;
justify-content: space-between;
}
.news__item {
width: 48%;
display: inline-block;
}
.news__item img {
max-width: 100%;
max-height: 100vh;
border: 2px solid red;
}
</style>
<div class="news__somr">
{% if page.title %}
<div class="news_title">
title:
{{ page.title | safe }}
</div>
{% endif %}
{% if page.description %}
<div class="news_description">
description:
{{ page.description | safe }}</div>
{% endif %}
</div>
<span class="news_images">
{% for photo in page.assets | sort %}
<img class="news_image" src="{{ page.path | safe }}{{ photo | split(pat='/') | last }}" />
<!-- need to set firs image and discuss-->
{% endfor %}
</span>
</section>
{% endfor %}
{% endfor %}