simpkey/src/views/timeline.pug

27 lines
620 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 20:53:44 +02:00
+post-form("/action/create-note", "今なにしてる?", "ノート")
2020-07-23 18:14:28 +02:00
hr
div
2020-07-23 20:53:44 +02:00
|[
2020-07-23 18:14:28 +02:00
a(href="/") ホーム
2020-07-23 20:53:44 +02:00
|] [
2020-07-23 18:14:28 +02:00
a(href="/ltl") ローカル
2020-07-23 20:53:44 +02:00
|] [
2020-07-23 18:14:28 +02:00
a(href="/stl") ソーシャル
2020-07-23 20:53:44 +02:00
|] [
2020-07-23 18:14:28 +02:00
a(href="/gtl") グローバル
2020-07-23 20:53:44 +02:00
|] [
a(href="/notifications") 通知
|] [
2020-07-23 18:53:00 +02:00
a(href="/settings") 設定
2020-07-23 20:53:44 +02:00
|]
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