mirror of
https://github.com/zedeus/nitter.git
synced 2024-11-12 03:31:42 +00:00
15 lines
566 B
Nim
15 lines
566 B
Nim
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||
|
import karax/[karaxdsl, vdom]
|
||
|
|
||
|
proc renderFeature*(): VNode =
|
||
|
buildHtml(tdiv(class="overlay-panel")):
|
||
|
h1: text "Unsupported feature"
|
||
|
p:
|
||
|
text "Nitter doesn't support this feature yet, but it might in the future. "
|
||
|
text "You can check for an issue and open one if needed here: "
|
||
|
a(href="https://github.com/zedeus/nitter/issues"):
|
||
|
text "https://github.com/zedeus/nitter/issues"
|
||
|
p:
|
||
|
text "To find out more about the Nitter project, see the "
|
||
|
a(href="/about"): text "About page"
|