mirror of
https://0xacab.org/anarsec/anarsec.guide.git
synced 2025-08-02 11:26:21 -04:00
french
This commit is contained in:
parent
36827dc61f
commit
4cd55ea6ac
14 changed files with 533 additions and 11 deletions
|
@ -14,7 +14,6 @@
|
|||
<img class="is-rounded" src="{{ config.extra.author.avatar }}" style="max-width: 192px" />
|
||||
</figure>
|
||||
{% endif %}
|
||||
{{ macros:: social_links( social_config=config.extra.social) }}
|
||||
<p class="my-6">
|
||||
<a href='{{ config.base_url }}'>
|
||||
<span class="icon">
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<nav aria-label="section navigation" class="navbar is-light" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item is-size-5 has-text-weight-bold" href="/">{{ config.title }}</a>
|
||||
<a class="navbar-item is-size-5 has-text-weight-bold" href="{{get_url(path="", lang=lang)}}/">{{ config.title }}</a>
|
||||
<a aria-expanded="false" aria-label="menu" class="navbar-burger burger" data-target="navMenu" role="button">
|
||||
<span aria-hidden="true"></span>
|
||||
<span aria-hidden="true"></span>
|
||||
|
@ -124,7 +124,7 @@
|
|||
<div class="content has-text-centered">
|
||||
<p>
|
||||
<a class="footer-text" href="https://0xacab.org/anarsec/anarsec.guide/-/blob/no-masters/CHANGELOG.md">Changelog </a>
|
||||
<a href="/atom.xml" target="_blank">
|
||||
<a href="{{get_url(path="", lang=lang)}}/atom.xml" target="_blank">
|
||||
<span class="icon" title="RSS Feed">
|
||||
<img src="/images/rss-symbol.png">
|
||||
</span>
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
<span class="icon is-small">
|
||||
<img src="/images/file-pdf.png">
|
||||
</span>
|
||||
<span><a href="/posts/{{page.slug | lower}}/{{page.extra.letter | lower}}">Letter booklet</a> | <a href="/posts/{{page.slug | lower}}/{{page.extra.a4 | lower}}">A4 booklet</a> </span>
|
||||
<span><a href="{{page.slug | lower}}/{{page.extra.letter | lower}}">Letter booklet</a> | <a href="{{page.slug | lower}}/{{page.extra.a4 | lower}}">A4 booklet</a> </span>
|
||||
</span>
|
||||
|
||||
{% endmacro %}
|
||||
|
@ -84,7 +84,7 @@
|
|||
<p>
|
||||
Categories:
|
||||
{% for category in categories %}
|
||||
<a class="has-text-weight-semibold" href="/categories/{{category | lower}}">
|
||||
<a class="has-text-weight-semibold" href="{{get_url(path="", lang=lang)}}/categories/{{category | lower}}">
|
||||
<span class="icon-text">
|
||||
<span class="icon is-small">
|
||||
<img src="/images/cube-pink.png">
|
||||
|
@ -100,7 +100,7 @@
|
|||
<p>
|
||||
Tags:
|
||||
{% for tag in tags %}
|
||||
<a class="has-text-weight-semibold" href="/tags/{{tag | lower}}">
|
||||
<a class="has-text-weight-semibold" href="{{get_url(path="", lang=lang)}}/tags/{{tag | lower}}">
|
||||
<span class="icon-text">
|
||||
<span class="icon is-small">
|
||||
<img src="/images/tag-pink.png">
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
<article class="box">
|
||||
<div>
|
||||
{% if page.extra.blogimage %}
|
||||
<a href="/posts/{{ page.slug }}">
|
||||
<a href="{{ page.slug }}">
|
||||
<img class="column is-full"
|
||||
src="{{ page.extra.blogimage }}">
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
<h2 class="title">
|
||||
<a class="has-text-dark" href='/posts/{{ page.slug }}'>
|
||||
<a class="has-text-dark" href='{{ page.slug }}'>
|
||||
{{ page.title }}
|
||||
</a>
|
||||
</h2>
|
||||
|
@ -48,7 +48,7 @@
|
|||
</div>
|
||||
<div class="content mt-2">
|
||||
{{ page.summary | safe }}
|
||||
<a class="has-text-weight-semibold" href='/posts/{{ page.slug }}'>
|
||||
<a class="has-text-weight-semibold" href='{{ page.slug }}'>
|
||||
Read More
|
||||
<span class="icon is-small">
|
||||
<img src="/images/arrow-color.png">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue