summaryrefslogtreecommitdiffstats
path: root/apps/base/templates/hfge-about.scm
blob: ab0b795fb923ee8902affdb54b18e00232d18066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
;;; 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."
          ))
      ))))