staxman-old/templates/home.html

35 lines
563 B
HTML
Raw Normal View History

2023-11-18 15:35:30 +00:00
{% extends "base.html" %}
2023-11-18 22:17:05 +00:00
{% block title %}Overview{% endblock %}
2023-11-18 15:35:30 +00:00
{% block content %}
<main>
2023-11-19 14:08:47 +00:00
<h2>All stacks</h2>
2023-11-18 19:51:10 +00:00
<ul>
{% for stack in stacks %}
2023-11-19 20:21:04 +00:00
<li class="{% if stack.active %}active{% endif %}"><a href="/stack/{{stack.name}}">{{stack.name}}</a>
</li>
2023-11-18 19:51:10 +00:00
{% endfor %}
</ul>
2023-11-18 15:35:30 +00:00
</main>
2023-11-18 22:17:05 +00:00
<style scoped>
2023-11-19 14:08:47 +00:00
ul {
margin: 0;
padding: 0;
}
li {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
gap: 0.5rem;
2023-11-19 20:21:04 +00:00
border-left: 5px solid #E5484D;
padding-left: 0.5ch;
2023-11-19 14:08:47 +00:00
2023-11-19 20:21:04 +00:00
&.active {
border-left-color: #33B074;
2023-11-19 14:08:47 +00:00
}
}
2023-11-18 22:17:05 +00:00
</style>
2023-11-18 15:35:30 +00:00
{% endblock %}