
- wi choose to switch to Pelican static site generator because it's written in Python, a language quite accessible to iss. It is also the same tool wi use for irr blog. It just makes sense. - Design the landing page by overriding the index template using Pelican THEME_TEMPLATES_OVERRIDE to simplify the change. - Design the contact page with gpg key and OMEMO fingerprint sign using that key. - Custom CSS for the banner and the link card of the landing page.
25 lines
600 B
HTML
25 lines
600 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Ce que j'édite</h2>
|
|
|
|
{% if LINKS and LINKS|length > 0 %}
|
|
<div class="column">
|
|
<div class="row">
|
|
{% for link in LINKS %}
|
|
<a class="card" href="{{ link.url }}" title="blog">
|
|
<div class="description">
|
|
<h3>{{ link.name }}</h3>
|
|
<p>
|
|
{{ link.description }}
|
|
</p>
|
|
</div>
|
|
<img src="{{ SITEURL }}/static/assets/images/{{ link.logo }}" class="logo">
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock content %}
|