summaryrefslogtreecommitdiffstats
path: root/apps/base/templates/about.scm
blob: bb7e91d2ffd7c1c7c1f55e5e767c0f0480ffd530 (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
53
54
55
56
57
;;; Harmonic Flow web site

(define-module (apps base templates 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 (about-t))


(define (about-t)
  "Return the About page in SHTML."
  (theme
   #:title (C_ "webpage title" '("About the Site |"))
   #:description
   (G_ "This website is dedicated to free software primarily in the area of graphics engines but also free software in general.")
   #:keywords
   (string-split ;TRANSLATORS: |-separated list of webpage keywords
    (G_ "About|Harmonic Flow") #\|)
   #:active-menu-item (C_ "website menu" "About Site")
   #:css (list
	  (hfweb-url "static/base/css/page.css"))
   #:crumbs (list (crumb (C_ "website menu" "About Site") "./"))
   #:content
   `(main
     (section
      (@ (class "page centered-block limit-width"))
      ,(G_ `(h2 "About the Site"))

      ,(G_
        `(p
          "This website is dedicated to free software primarily in the area of
          graphics engines but also free software in general."
          ))

      ,(G_
        `(p
          "The "
          ,(G_ `(a (@ (href ,(hfweb-url "blog/"))) " Harmonic Flow Blog"))
          " will cover any topics that is of interest (mostly related to free
          software in some way)."
          ))

      ,(G_
        `(p
          "Checkout "
          ,(G_ `(a (@ (href ,(hfweb-url "hfge-about/"))) " HFGE 3D graphics engine"))
          " for more information about a brand new cross platform 3D graphics
          engine currently in development."
          ))

      ,(G_
        `(p
          "Please use the "
          ,(G_ `(a (@ (href ,(hfweb-url "contact/"))) " contact page"))
          " for contact information."))))))