Showing updated date at translation_status.html page.
Showing "Edit this page on GitHub" link on the bottom of FAQ pages Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
e2e50a5d61
commit
8fb295c057
4 changed files with 21 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
title: How to import bookmarks?
|
||||
description: ""
|
||||
updated: 2024-06-14
|
||||
|
||||
taxonomies:
|
||||
faq: ["Bookmarks"]
|
||||
|
|
|
@ -105,6 +105,10 @@
|
|||
</main>
|
||||
|
||||
<footer>
|
||||
{% if page.taxonomies and page.taxonomies.faq %}{# Show FAQ editing link #}
|
||||
{% include 'faq/github_edit_link.html' %}
|
||||
{% endif %}
|
||||
|
||||
{% include 'bottom_menu.html' %}
|
||||
<p>
|
||||
<span data-nosnippet>© 2024 <a href="mailto:legal@organicmaps.app">Organic Maps OÜ</a>, reg. code 16225385</span>
|
||||
|
|
1
templates/faq/github_edit_link.html
Normal file
1
templates/faq/github_edit_link.html
Normal file
|
@ -0,0 +1 @@
|
|||
<a href="https://github.com/organicmaps/organicmaps.github.io/blob/master/content/{{ page.relative_path }}">Edit this page on GitHub</a>
|
|
@ -20,6 +20,13 @@
|
|||
table.status tr td {
|
||||
border: 1px solid gray;
|
||||
}
|
||||
table.status .updated-label {
|
||||
display: block;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 8pt;
|
||||
text-align: end;
|
||||
margin-top: 4px;
|
||||
}
|
||||
</style>
|
||||
<title>F.A.Q. translation status</title>
|
||||
</head>
|
||||
|
@ -41,14 +48,20 @@
|
|||
</tr>
|
||||
{%- for faq_page in faq_category.pages | sort(attribute="extra.order") -%}
|
||||
<tr class="faq_page">
|
||||
<td><a href="{{ faq_page.permalink }}">{{ faq_page.title }}</a></td>
|
||||
<td>
|
||||
<a href="{{ faq_page.permalink }}">{{ faq_page.title }}</a>
|
||||
<span class="updated-label" title="Updated date">Update: {{ faq_page.updated | default(value="[Unknown]") }}</span>
|
||||
</td>
|
||||
{% for lang in faq_languages %}
|
||||
{% set page_trans = faq_page.translations | filter(attribute="lang", value=lang) %}
|
||||
{% if page_trans | length == 0 %}
|
||||
<td>❌</td> <!-- Translation not found -->
|
||||
{% else %}
|
||||
{# __tera_context #}
|
||||
<td><a href="{{ page_trans | first | get(key="permalink") }}">{{ page_trans | first | get(key="title") }}</a></td>
|
||||
<td>
|
||||
<a href="{{ page_trans | first | get(key="permalink") }}">{{ page_trans | first | get(key="title") }}</a>
|
||||
<span class="updated-label" title="Updated date">Update: {{ page_trans | first | get(key="updated", default="[Unknown]") }}</span>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Reference in a new issue