michalvankodev-site/templates/egg_fetcher_page.html
Michal Vanko 2979e21285
Some checks failed
test / cargo test (push) Failing after 59s
broadcasts and 404 errors
2024-10-02 15:32:40 +02:00

17 lines
504 B
HTML

{% extends "base.html" %}
{% block title %}Egg fetcher showcase{% endblock %}
{% block og_meta %}
<meta property="og:title" content="Egg fetcher showcase" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://michalvanko.dev/showcase/egg-fetcher" />
<meta property="og:image" content="https://michalvanko.dev/images/m-logo.svg" />
{% endblock %}
{% block content %}
<article class="article-body">
{% include "showcase/egg-fetcher.html" %}
</article>
{% endblock %}