Prevent bad staticDir from causing problems
This commit is contained in:
parent
4ec2874008
commit
23b36d4268
|
@ -1,5 +1,5 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-only
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||||||
import strformat
|
import os, strformat
|
||||||
import karax/[karaxdsl, vdom]
|
import karax/[karaxdsl, vdom]
|
||||||
|
|
||||||
const
|
const
|
||||||
|
@ -12,9 +12,9 @@ var aboutHtml: string
|
||||||
|
|
||||||
proc initAboutPage*(dir: string) =
|
proc initAboutPage*(dir: string) =
|
||||||
try:
|
try:
|
||||||
aboutHtml = readFile(&"{dir}/md/about.html")
|
aboutHtml = readFile(dir/"md/about.html")
|
||||||
except IOError:
|
except IOError:
|
||||||
stderr.write &"{dir}/about.html not found, please run `nimble md`\n"
|
stderr.write (dir/"md/about.html") & " not found, please run `nimble md`\n"
|
||||||
aboutHtml = "<h1>About page is missing</h1><br><br>"
|
aboutHtml = "<h1>About page is missing</h1><br><br>"
|
||||||
|
|
||||||
proc renderAbout*(): VNode =
|
proc renderAbout*(): VNode =
|
||||||
|
|
Loading…
Reference in New Issue