;;; Harmonic Flow web site (define-module (apps base templates menu) #:use-module (apps base templates components) #:use-module (apps base templates theme) #:use-module (apps base utils) #:use-module (apps i18n) #:export (menu-t)) (define (menu-t) "Return the Menu page in SHTML." (theme #:title (C_ "webpage title" '("Menu")) #:description (G_ "Website menu.") #:keywords (string-split ;TRANSLATORS: |-separated list of webpage keywords (G_ "Harmonic Flow|HFGE|Free Software|C++|Libre software|Graphics Programming|Vulkan") #\|) #:active-menu-item (C_ "website menu" "Menu") #:css (list (hfweb-url "static/base/css/menu.css"))))