simpkey/src/views/timeline.pug

25 lines
705 B
Plaintext
Raw Normal View History

2020-07-23 18:14:28 +02:00
extends _base
block content
+avatar(user)
p: b=getUserName(user)
|  
span(style="color: gray")= getAcct(user)
2020-07-23 18:53:00 +02:00
form(action="/action/create-note", method="post")
2020-07-23 18:14:28 +02:00
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") グローバル
2020-07-23 18:53:00 +02:00
| ・
a(href="/settings") 設定
2020-07-23 18:14:28 +02:00
h2= timelineName
each note in timeline
2020-07-23 19:44:58 +02:00
+note(note)
2020-07-23 18:14:28 +02:00
hr