summaryrefslogtreecommitdiffstats
path: root/apps/base/templates/hfge-download.scm
blob: 0e91657f85ed82b41cec89b1fb9ce9c0ca8f932b (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
;;; Harmonic Flow web site

(define-module (apps base templates hfge-download)
  #: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-download-t))


(define (hfge-download-t)
  "Return the Download HFGE page in SHTML."
  (theme
   #:title (C_ "webpage title" '("Download HFGE |"))
   #:description
   (G_ "Download the latest version of HFGE. Source code is available.")
   #:keywords
   (string-split ;TRANSLATORS: |-separated list of webpage keywords
    (G_ "Download|HFGE|Source Code") #\|)
   #:active-menu-item (C_ "website menu" "Download")
   #:css (list
	  (hfweb-url "static/base/css/page.css"))
   #:crumbs (list (crumb (C_ "website menu" "Download HFGE") "./"))
   #:content
   `(main
     (section
      (@ (class "page centered-block limit-width"))
      ,(G_ `(h2 "Download HFGE"))

      ,(G_
        `(p
          "HFGE is a new cross platform 3D engine currently in development. Once
          HFGE is released you'll be able to download HFGE from here :)
          "))
      ))))