DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: af985b3e987ed797cf455d8acc7954af26dcc95e liljamo-dev-zola/templates/index.html -rw-r--r-- 698 bytes
af985b3eJonni Liljamo feat: add a few projects 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "layouts/base.html" %}

{% block content %}
<div class="flex flex-wrap justify-center gap-2">
    {% for section_path in section.subsections %}
    {% set section = get_section(path=section_path) %}
    <div class="flex flex-col bg-background-50 p-2 rounded-xl hover:bg-background-100 transition-colors">
        <div class="max-w-[240px]">
            <figure>
                <img src="/img/240x135-placeholder.svg"/>
            </figure>
            <a class="font-medium px-1 pt-1 hover:underline" href={{ section.permalink }}>{{ section.title }}</a>
            <p class="px-2">{{ section.description }}</p>
        </div>
    </div>
    {% endfor %}
</div>
{% endblock content %}