This commit is contained in:
2026-03-31 01:49:26 +09:00
parent 05a9a64581
commit f2deaa428e
5 changed files with 5379 additions and 0 deletions

25
public/qr-code.html Normal file
View File

@@ -0,0 +1,25 @@
{% 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 %}
<p class="text-small text-bold"><a href="/" class="text-no-decoration">← ホーム</a></p>
<div class="big-image">
<img src="/assets/images/qr_code.svg" width="384" height="384">
</div>
{% endblock %}