aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/view/small-calendar.scm
blob: 4d40c57c5daa33fb791406c4e8cc2723f1017cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(define-module (calp html view small-calendar)
  :use-module ((calp html components) :select (xhtml-doc include-css))
  :use-module ((calp html caltable) :select (cal-table))
  :use-module ((datetime) :select (month- month+ remove-day date->string))
  :export (render-small-calendar)
  )

(define (render-small-calendar month standalone)
  (define table (cal-table
                 start-date: month
                 end-date: (remove-day (month+ month))
                 next-start: month+
                 prev-start: month-
                 ))
  (if standalone
      (xhtml-doc
       (head (title ,(date->string month "~1"))
             ,(include-css "/static/smallcal.css"))
       (body ,table))
      table))