mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
parent
f28d05fc44
commit
372ce7867c
3 changed files with 17 additions and 1 deletions
|
|
@ -30,6 +30,9 @@ routes:
|
|||
get "/about":
|
||||
resp renderMain(renderAbout(), request, cfg.title)
|
||||
|
||||
get "/about/feature":
|
||||
resp renderMain(renderFeature(), request, cfg.title)
|
||||
|
||||
extend preferences, ""
|
||||
extend rss, ""
|
||||
extend search, ""
|
||||
|
|
|
|||
|
|
@ -1,8 +1,14 @@
|
|||
import karax/[karaxdsl, vdom]
|
||||
import markdown
|
||||
|
||||
let about = markdown(readFile("public/md/about.md"))
|
||||
let
|
||||
about = markdown(readFile("public/md/about.md"))
|
||||
feature = markdown(readFile("public/md/feature.md"))
|
||||
|
||||
proc renderAbout*(): VNode =
|
||||
buildHtml(tdiv(class="overlay-panel")):
|
||||
verbatim about
|
||||
|
||||
proc renderFeature*(): VNode =
|
||||
buildHtml(tdiv(class="overlay-panel")):
|
||||
verbatim feature
|
||||
|
|
|
|||
Loading…
Reference in a new issue