Add "not supported" page at /about/feature

Fixes #42
This commit is contained in:
Zed 2019-09-23 01:55:02 +02:00
parent f28d05fc44
commit 372ce7867c
3 changed files with 17 additions and 1 deletions

7
public/md/feature.md Normal file
View file

@ -0,0 +1,7 @@
# Unsupported feature
Nitter doesn't support this feature yet, but it might in the future.
You can check for an issue and open one if needed here:
<https://github.com/zedeus/nitter/issues>
To find out more about the Nitter project, see the [About page](/about).

View file

@ -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, ""

View file

@ -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