-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticles_c++.html
31 lines (29 loc) · 973 Bytes
/
articles_c++.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: page
permalink: /articles/c++/
logo: c++.svg
background: cavern2.webp
---
{% include header.html %}
<div class="container">
<div class="text-center">
<span class="rounded-card sticky-top">
<a href="/articles/{{page.category}}" class="button nier highlight-hover bullet triangle-left">Back</a>
</span>
</div>
{% assign articles = site.articles | where: "category", "c++" %}
{% if articles.size == 0 %}
{% wip %}
<p>Aucun article disponible pour le moment. Ils sont bien en cours de rédaction mais aucun n'est encore publié. Merci de repasser ultérieurement.</p>
{% endif %}
<section class="article-cards">
{% for article in articles %}
<a href="{{ article.url }}" class="card">
<header{% if article.background != "" %} style="--background-image: url('/assets/images/backgrounds/{{article.background}}');"{% endif %}>
<h2>{{ article.title }}</h2>
</header>
<div>{{ article.excerpt }}</div>
</a>
{% endfor %}
</section>
</div>