mirror of https://github.com/andrigamerita/simpkey
27 lines
773 B
Plaintext
27 lines
773 B
Plaintext
|
extends _base
|
||
|
|
||
|
block content
|
||
|
+avatar(user)
|
||
|
p: b=getUserName(user)
|
||
|
|
|
||
|
span(style="color: gray")= getAcct(user)
|
||
|
form(action="/note", method="post")
|
||
|
textarea(name="text", placeholder="今何してる?" style="max-width: 100%; min-width: 100%; height: 6em; margin-bottom: 8px")
|
||
|
button(type="submit") ノート
|
||
|
hr
|
||
|
div
|
||
|
a(href="/") ホーム
|
||
|
| ・
|
||
|
a(href="/ltl") ローカル
|
||
|
| ・
|
||
|
a(href="/stl") ソーシャル
|
||
|
| ・
|
||
|
a(href="/gtl") グローバル
|
||
|
h2= timelineName
|
||
|
each note in timeline
|
||
|
if (note.renote)
|
||
|
p: b 🔁 !{getUserName(note.user)} がRenote
|
||
|
+note(note.renote)
|
||
|
else
|
||
|
+note(note)
|
||
|
hr
|