templates/ansi-status.tmpl
author Mikael Berthe <mikael@lilotux.net>
Fri, 14 Jul 2017 21:53:09 +0200
changeset 161 d417a821e85a
parent 124 20d514540f37
child 169 26a1f0e705c9
permissions -rw-r--r--
Templates/Themes: Display when messages are private
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
76
f155f9d86832 Fix in_reply_to ID format in templates
Mikael Berthe <mikael@lilotux.net>
parents: 59
diff changeset
     1
- Status ID: {{color "red"}}{{printf "%.0f" .id}}{{color "reset"}}  {{color "magenta"}}@{{.account.acct}}{{color "reset"}}
52
2ffe0d622db9 Use the color function in the ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
     2
  Name: {{color ",,bold"}}{{.account.display_name}}{{color "reset"}}
161
d417a821e85a Templates/Themes: Display when messages are private
Mikael Berthe <mikael@lilotux.net>
parents: 124
diff changeset
     3
{{- if eq .visibility "private"}}
d417a821e85a Templates/Themes: Display when messages are private
Mikael Berthe <mikael@lilotux.net>
parents: 124
diff changeset
     4
  Private: true{{end}}
120
54b6f2a4098b Add template command tolocal; update templates and documentation
Mikael Berthe <mikael@lilotux.net>
parents: 95
diff changeset
     5
  Date: {{.created_at | tolocal}}
23
2ba1ea451669 Add template samples
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
  URL: {{.url}}
2ba1ea451669 Add template samples
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
{{- if .reblog }}{{with .reblog}}
52
2ffe0d622db9 Use the color function in the ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
     8
  {{color ",,bold"}}Reblogged from: {{color "magenta"}}@{{.account.acct}}{{color "reset"}}
76
f155f9d86832 Fix in_reply_to ID format in templates
Mikael Berthe <mikael@lilotux.net>
parents: 59
diff changeset
     9
    ID: {{printf "%.0f" .id}}
52
2ffe0d622db9 Use the color function in the ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    10
    Name: {{color ",,bold"}}{{.account.display_name}}{{color "reset"}}
120
54b6f2a4098b Add template command tolocal; update templates and documentation
Mikael Berthe <mikael@lilotux.net>
parents: 95
diff changeset
    11
    Date: {{.created_at | tolocal}}
78
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    12
{{- if gt .in_reply_to_id 0.0}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    13
    Replying to: {{printf "%.0f" .in_reply_to_id}}{{end}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    14
{{- if .sensitive}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    15
  Sensitive: true{{end}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    16
{{- with .spoiler_text}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    17
    Spoiler: {{.}}{{end}}
124
20d514540f37 Improve text wrapping
Mikael Berthe <mikael@lilotux.net>
parents: 120
diff changeset
    18
    Message: {{color "blue"}}{{.content | fromhtml | wrap "       " 79 | trim}}{{color "reset"}}
59
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    19
{{- range .media_attachments}}
76
f155f9d86832 Fix in_reply_to ID format in templates
Mikael Berthe <mikael@lilotux.net>
parents: 59
diff changeset
    20
    - Attachment ID: {{printf "%.0f" .id}}
59
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    21
{{- if .text_url}}
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    22
      Text URL: {{.text_url}}{{else if .url}}
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    23
      URL: {{.url}}{{else if .remote_url}}
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    24
      Remote URL: {{.remote_url}}{{end}}{{end}}
23
2ba1ea451669 Add template samples
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    25
{{end}}{{else}}
78
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    26
{{- if gt .in_reply_to_id 0.0}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    27
  Replying to: {{printf "%.0f" .in_reply_to_id}}{{end}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    28
{{- if .sensitive}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    29
  Sensitive: true{{end}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    30
{{- with .spoiler_text}}
b40bc3a8b572 Update ANSI templates
Mikael Berthe <mikael@lilotux.net>
parents: 76
diff changeset
    31
  Spoiler: {{.}}{{end}}
124
20d514540f37 Improve text wrapping
Mikael Berthe <mikael@lilotux.net>
parents: 120
diff changeset
    32
  Message: {{color "blue"}}{{.content | fromhtml | wrap "     " 79 | trim}}{{color "reset"}}
59
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    33
{{- range .media_attachments}}
76
f155f9d86832 Fix in_reply_to ID format in templates
Mikael Berthe <mikael@lilotux.net>
parents: 59
diff changeset
    34
  - Attachment ID: {{printf "%.0f" .id}}
59
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    35
{{- if .text_url}}
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    36
    Text URL: {{.text_url}}{{else if .url}}
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    37
    URL: {{.url}}{{else if .remote_url}}
ff88978ceb55 Update templates
Mikael Berthe <mikael@lilotux.net>
parents: 52
diff changeset
    38
    Remote URL: {{.remote_url}}{{end}}{{end}}
23
2ba1ea451669 Add template samples
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    39
{{end -}}