This repository has been archived on 2026-04-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
website/public/qr-code.html
T
2026-04-17 06:16:30 +09:00

17 lines
544 B
HTML

{% extends "/base.html" %}
{% block title %}QRコード - Nercone{% endblock %}
{% block title_suffix %}QR Code{% endblock %}
{% block header_desc %}このサイトのトップページのQRコードです{% endblock %}
{% block extra_head %}
<style>
main {
display: flex;
justify-content: center;
align-items: center;
}
</style>
{% endblock %}
{% block content %}
<img src="/assets/images/qr_code.svg" width="256" height="256">
{% endblock %}