mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 03:04:28 +00:00
Tweak the template
This commit is contained in:
parent
30eb21203c
commit
623261b832
3 changed files with 9 additions and 3 deletions
|
@ -89,7 +89,7 @@ a:hover {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#header {
|
header {
|
||||||
margin-bottom: 70px;
|
margin-bottom: 70px;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% if not request.path.startswith('/admin') %}
|
{% if not request.path.startswith('/admin') %}
|
||||||
<div id="header">
|
<header>
|
||||||
|
|
||||||
<div class="h-card p-author">
|
<div class="h-card p-author">
|
||||||
<data class="u-photo" value="{{ config.ME.icon.url }}"></data>
|
<data class="u-photo" value="{{ config.ME.icon.url }}"></data>
|
||||||
|
@ -28,5 +28,5 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</header>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -42,7 +42,13 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<textarea name="content" rows="10" cols="50" autofocus="autofocus" designMode="on" style="font-size:1.2em;width:95%;">{{ content }}</textarea>
|
<textarea name="content" rows="10" cols="50" autofocus="autofocus" designMode="on" style="font-size:1.2em;width:95%;">{{ content }}</textarea>
|
||||||
|
|
||||||
|
<p>
|
||||||
<input type="file" name="file">
|
<input type="file" name="file">
|
||||||
|
<p>
|
||||||
|
<p>
|
||||||
|
<input type="text" name="file_description" placeholder="attachment description (optional)">
|
||||||
|
</p>
|
||||||
|
|
||||||
{% if request.args.get("question") == "1" %}
|
{% if request.args.get("question") == "1" %}
|
||||||
<div style="margin-top:20px;">
|
<div style="margin-top:20px;">
|
||||||
|
|
Loading…
Reference in a new issue