Files
website/public/qr-code.html
2026-03-31 01:59:48 +09:00

25 lines
783 B
HTML

{% extends "/base.html" %}
{% block title %}QRコード - Nercone{% endblock %}
{% block extra_title %}QR Code{% endblock %}
{% block header_desc %}このサイトのトップページのQRコードです{% endblock %}
{% block extra_head %}
<style>
main {
display: grid;
grid-template-rows: auto 1fr auto;
}
.big-image {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 48pt;
}
</style>
{% endblock %}
{% block content %}
<div class="big-image">
<img src="/assets/images/qr_code.svg" width="256" height="256">
</div>
{% endblock %}