mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00
55 lines
1.7 KiB
HTML
55 lines
1.7 KiB
HTML
{% macro blog_posts(count) %}
|
|
{% set articles = get_section(path="blog/_index.md") %}
|
|
{% set latest = articles.pages | slice(end = count) %}
|
|
{% for article in latest %}
|
|
<div class="block">
|
|
<a class="banner" href="{{ article.permalink | safe }}"><img loading="lazy" src="{{ article.extra.banner | safe }}" onerror="this.onerror = null; this.src = this.src.replace('.avif', '.png')" alt="Article cover image" /></a>
|
|
<h2 class="headline"><a href="{{ article.permalink | safe }}">{{ article.title }}</a></h2>
|
|
<div class="summary">
|
|
<p>{{ article.summary | striptags | safe }}</p>
|
|
</div>
|
|
<a href="{{ article.permalink | safe }}" class="link arrow">Keep reading</a>
|
|
</div>
|
|
{% endfor %}
|
|
{% endmacro blog_posts %}
|
|
|
|
{% macro text_balancer() %}
|
|
<style>
|
|
.balance-text {
|
|
visibility: hidden;
|
|
}
|
|
|
|
@media (scripting: none) {
|
|
.balance-text {
|
|
visibility: visible !important;
|
|
}
|
|
}
|
|
|
|
@supports (text-wrap: balance) {
|
|
.balance-text,
|
|
.balanced-text {
|
|
text-align: left;
|
|
text-wrap: balance;
|
|
visibility: visible;
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
{{ load_data(path="static/text-balancer.js", format="plain") | safe }}
|
|
</script>
|
|
{% endmacro text_balancer %}
|
|
|
|
{% macro hierarchical_message_system_tree() %}
|
|
{%- set content = load_data(path = "other/editor-structure/replacement.html", format = "plain", required = false) -%}
|
|
{%- set fallback = "<pre>THIS CONTENT IS FILLED IN WHEN CI BUILDS THE WEBSITE.
|
|
|
|
TO TEST IT LOCALLY, RUN:
|
|
|
|
cd website/other/editor-structure
|
|
|
|
AND THEN:
|
|
|
|
cargo test --package graphite-editor --lib -- messages::message::test::generate_message_tree
|
|
node generate.js ../../../hierarchical_message_system_tree.txt replacement.html</pre>" -%}
|
|
{{ content | default(value = fallback) | safe }}
|
|
{% endmacro hierarchical_message_system_tree %}
|