このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
Nitter-mod/src/views/about.nim

25 行
691 B
Nim
Raw 通常表示 履歴

2021-12-27 10:37:38 +09:00
# SPDX-License-Identifier: AGPL-3.0-only
import strformat
2022-01-10 07:14:01 +09:00
import karax/[karaxdsl, vdom]
2019-09-23 08:42:00 +09:00
const
date = staticExec("git show -s --format=\"%cd\" --date=format:\"%Y.%m.%d\"")
hash = staticExec("git show -s --format=\"%h\"")
link = "https://github.com/zedeus/nitter/commit/" & hash
version = &"{date}-{hash}"
2022-01-10 07:14:01 +09:00
let about =
try:
readFile("public/md/about.html")
except IOError:
stderr.write "public/md/about.html not found, please run `nimble md`\n"
"<h1>About page is missing</h1><br><br>"
2019-09-09 11:41:20 +09:00
proc renderAbout*(): VNode =
2019-09-13 17:44:21 +09:00
buildHtml(tdiv(class="overlay-panel")):
2019-09-23 08:42:00 +09:00
verbatim about
h2: text "Instance info"
p:
text "Version "
a(href=link): text version