bff-challenge/templates/about.html.tera

15 lines
624 B
Plaintext
Raw Permalink Normal View History

2023-01-24 18:37:35 +00:00
{% extends "base" %}
{% block title %}{% endblock %}
{% block body %}
<div class="flex flex-col w-full h-fit content-center justify-center">
<div class="card w-96 h-48 flex-initial bg-base-300 shadow-xl self-center m-48">
<div class="card-body">
<h2 class="card-title">Info</h2>
<p>Una versión creativa y libre de estos sitios con "desafíos del mejor amigo".</p>
<div class="card-actions justify-end">
<a class="btn btn-primary" href="https://git.cloudapio.eu/apio/bff-challenge">Código</a>
</div>
</div>
</div>
</div>
{% endblock %}