55 lines
1.2 KiB
HTML
55 lines
1.2 KiB
HTML
{% extends "home/base_home.html" %}
|
|
|
|
{% block title %}{{ t.software.title }} - {{ t.home.hero_title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<main class="container">
|
|
<hgroup>
|
|
<h1>{{ t.software.title }}</h1>
|
|
<p>{{ t.software.subtitle }}</p>
|
|
</hgroup>
|
|
|
|
<article>
|
|
<h2>{{ t.software.python_title }}</h2>
|
|
<p>{{ t.software.python_text }}</p>
|
|
</article>
|
|
|
|
<article>
|
|
<h2>{{ t.software.bash_title }}</h2>
|
|
<p>{{ t.software.bash_text }}</p>
|
|
</article>
|
|
|
|
<article>
|
|
<h2>{{ t.software.db_title }}</h2>
|
|
<p>{{ t.software.db_text }}</p>
|
|
</article>
|
|
|
|
<article>
|
|
<h2>{{ t.software.php_title }}</h2>
|
|
<p>{{ t.software.php_text }}</p>
|
|
</article>
|
|
|
|
<article>
|
|
<h2>{{ t.software.docker_title }}</h2>
|
|
<p>{{ t.software.docker_text }}</p>
|
|
</article>
|
|
|
|
<article>
|
|
<h2>{{ t.software.ai_title }}</h2>
|
|
<p>{{ t.software.ai_text }}</p>
|
|
</article>
|
|
|
|
<article>
|
|
<h2>{{ t.software.qdrant_title }}</h2>
|
|
<p>{{ t.software.qdrant_text }}</p>
|
|
</article>
|
|
|
|
<footer style="margin-top: 3rem;">
|
|
<p>
|
|
<strong>{{ t.software.footer_text }}</strong>
|
|
<a href="/{{ lang }}/login">{{ t.software.footer_link }} →</a>
|
|
</p>
|
|
</footer>
|
|
</main>
|
|
{% endblock %}
|