aboutsummaryrefslogtreecommitdiff
path: root/web/view/view.scm
blob: 6a0b8ba7cca7922f48aa44a703f04e89997b62d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(define-module (web view view)
  #:use-module (json)
  #:use-module (ice-9 match)
  #:use-module (ice-9 format)
  #:use-module (ice-9 iconv)
  #:use-module (ice-9 receive)
  #:use-module (ice-9 string-fun)
  #:use-module (sxml simple)
  #:use-module (web sxml)
  #:use-module (web view brand msk)

  #:export (view-brand))

(define* (view-brand path)
  (msk-html #:info
            '((h2 "Introduction")
              (p "New project for MSK with some live coding!")
              (img (@ (src "/static/images/CMOR.jpg")
  ))))