--
This commit is contained in:
25
public/qr-code.html
Normal file
25
public/qr-code.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user