;;; Harmonic Flow web site (define-module (apps base templates hfge-about) #:use-module (apps base templates components) #:use-module (apps base templates theme) #:use-module (apps base types) #:use-module (apps base utils) #:use-module (apps i18n) #:export (hfge-about-t)) (define (hfge-about-t) "Return the About HFGE page in SHTML." (theme #:title (C_ "webpage title" '("About HFGE |")) #:description (G_ "HFGE is a cross platform 3D game engine written in C++ and distributed under the zlib license.") #:keywords (string-split ;TRANSLATORS: |-separated list of webpage keywords (G_ "HFGE|Harmonic Flow|Graphics Engine|Game Engine|3D game engine|cross platform|Free Software|C++|Libre software|Graphics Programming|Vulkan|Download") #\|) #:active-menu-item (C_ "website menu" "About") #:css (list (hfweb-url "static/base/css/page.css")) #:crumbs (list (crumb (C_ "website menu" "About HFGE") "./")) #:content `(main (section (@ (class "page centered-block limit-width")) ,(G_ `(h2 "About HFGE")) ,(G_ `(p "HFGE is a new cross platform 3D engine currently in development. HFGE is written in C++ and will initially support Windows and GNU/Linux platforms. HFGE will use a modern renderer in the form of Vulkan. ")) ,(G_ `(p "HFGE is free / libre software and will be distributed under the zlib license. This license allows you to use HFGE freely in any software. ")) ,(G_ `(p "More information, " ,(G_ `(a (@ (href ,(hfweb-url "hfge-download/"))) " downloads")) " and" ,(G_ `(a (@ (href ,(hfweb-url "hfge-git/"))) " git repoistory")) " will be available once it's ready for public release." )) ))))